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?
}– Gabriel Santos Apr 17 '12 at 17:41$("#module").addClass("withSidebar");and let your stylesheet handle the styling. – Alex Wayne Apr 17 '12 at 17:41