When I try and use the jQuery next() method it doesn't work with live().
First off, here is my code:
$(".toggle_button").live('click', function() {
$(this).html($(this).html() == '-' ? '+' : '-');
$(this).next(".info_section").toggle(400);
});
Here's the HTML
<div class='section_toggle_container'>
<div class='toggle_button'>-</div>
<strong>Driver Information:</strong>
</div>
<div class='info_section'>
info here
</div>
Would the problem maybe lie in the fact that .toggle_button is nested, making .info_section unreachable?
The second line works great, because it's modifying the element given the live() event. The third line, however, is where the problem's at. This is because it's using next().
Can anyone help me with a solution for my next() problem?
.info_sectionfollowing the.toggle_buttonelement? Or are you destroyingthiswith the.html()call in the line above? Try using.text()instead. – Orbling Jan 17 '11 at 21:12next()will only return an element if and only if the next sibling ofthishas classinfo_section. It does not return the next sibling with classinfo_section. – Felix Kling Jan 17 '11 at 21:13htmlonly affects the content, not the element itself. – Felix Kling Jan 17 '11 at 21:15