Tagged Questions

2
votes
3answers
2k views

jQuery nextAll — Click on h-element toggles all p-elements until next h

i'm creating an FAQ page where the answer is toggled by clicking on the question. The question is h3 and the answer is several "p" elements. Like this: <h3>The First Question</h3> ...
2
votes
4answers
3k views

jQuery toggle next two elements

I have a form select element that, when a certain value is selected, will toggle two other elements on the page (a dt / dd pair). The event is triggered correctly, but I can't get the elements to ...
0
votes
2answers
204 views

jquery problem internet explorer 9 and 7

$(document).ready(function(){ $("#yanMenu ul").hide(); $("div#button").click(function(){ $(this).next().slideToggle("normal"); }); }); <div ...
0
votes
1answer
81 views

jquery next plus toggle is not working. Is this a bug?

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); ...