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?

link|improve this question

You will need to show the HTML this is applying to I think. Is it possible that there is no .info_section following the .toggle_button element? Or are you destroying this with the .html() call in the line above? Try using .text() instead. – Orbling Jan 17 '11 at 21:12
1  
can we see you html code? – amosrivera Jan 17 '11 at 21:13
What exactly is the problem? How does your HTML look like? next() will only return an element if and only if the next sibling of this has class info_section. It does not return the next sibling with class info_section. – Felix Kling Jan 17 '11 at 21:13
@Orbling: html only affects the content, not the element itself. – Felix Kling Jan 17 '11 at 21:15
Post your actual code, I have no idea what your problem is. I can get it working no problem: jsfiddle.net/jWR6A But all I've done is take a random guess at whatever the heck it is you want to do. Post the HTML. Or better describe what .next isn't doing, because it's doing exactly what the docs say it should do. – Incognito Jan 17 '11 at 21:36
show 1 more comment
feedback

1 Answer

up vote 3 down vote accepted

Looking at the HTML should't your statement:

$(this).next(".info_section").toggle(400);

be:

$(this).parent().next(".info_section").toggle(400);

Regards Neil

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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