Hello! Does anybody see a mistake here? I want to let a DIV disappear
while another DIV needs to change its class. Thanks for your input!

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

Reply via email to