Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i wrote this code:

function showSidebar() {
    $("#module").css("float", "left");
    $("#module").css("width", "744px");
    $("#sidebar").show("slow");


    $("#sidebar-menu-open").click(function (e) {
        $("#sidebar").hide("slow");
        $("#module").css("float", "normal");
        $("#module").css("width", "945px");
        e.preventDefault();
    });
}

it works... but, the third time i click #sidebar-menu-open it stops. How can i avoid this stop to make this function work everytime i click?

share|improve this question
why is the click inside showSidebar()? – t q Apr 17 '12 at 17:38
Can you post the full working code? It seems like something is missing ... the showSidebar() doesn't even have a closing paren. – g13n Apr 17 '12 at 17:40
@GopalVenkatesan Have, but the code are not posted correctly. See after code block have a } – Gabriel Santos Apr 17 '12 at 17:41
2  
Never set that much css in JS like that. Instead $("#module").addClass("withSidebar"); and let your stylesheet handle the styling. – Alex Wayne Apr 17 '12 at 17:41
To add to what @AlexWayne is saying, each time you modify an inline style property via the css tag, you will (most likely) cause a reflow and repaint of the page. For each line. Where as adding a CSS Class would only trigger this once – Matt Apr 17 '12 at 17:43
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.