The following code does not work in IE7 or IE8...does anyone have any ideas as to why? Thanks!
$('.change_settings_btn').live('click', function(){
var link = $(this);
link.next('.change_settings_box').toggle(0, function(){
link.toggleClass('change_on');
});
});
nextAll()instead ofnext()– fudgey Apr 22 '11 at 23:07link.toggleClass('change_on');doesn't change the next box, but the btn itself. To toggle the box you should use the code provided by Jason. – SPL_Splinter Apr 22 '11 at 23:19