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');
    });
});
link|improve this question

Your HTML would help, but maybe try using nextAll() instead of next() – fudgey Apr 22 '11 at 23:07
1  
Are you sure you want to toggle the class of the button? link.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
feedback

1 Answer

Why not just do this:

$('.change_settings_btn').live('click', function(){
    var link = $(this);
    link.next('.change_settings_box').toggleClass('change_on');
});

Although I can't say for sure because I don't know what your HTML looks like or what exactly you're trying to do.

link|improve this answer
Ah, ok maybe I didn't explain this well enough. This is toggling the visibility of the .change_settings_box and then also changing the class of the .change_settings_button. It works fine in all browsers except IE7 and IE8. Thanks for the help! – ThePixelProdigy Apr 23 '11 at 18:15
what exactly are you trying to do? – Jason Apr 23 '11 at 19:39
I have multiple change settings menus on one page. I am trying to toggle the visibility of the .change_settings_box and then also toggle the class of the .change_settings_button when its clicked. Really simple. Its just not working in IE7 or 8...weird. – ThePixelProdigy Apr 23 '11 at 23:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.