I want a DIV to disappear while another DIV supposed to toggle its
class. The first task gets accomplished but not the 2nd one. What is
wrong with my approach? Thank you!


jQuery(document).ready(function() {

jQuery(".toggle-left").click(function() {
jQuery("#left").toggle('slow');
jQuery("#forum").toggleClass("#forum-wide");
});

});

Reply via email to