vote up 0 vote down star

If I run this code,

var waitRow = $(this).parent().parent().next().get(0);
$(waitRow).children('td:nth-child(2)').html('some text').toggle();

toggle is not called.

If I instead write the following code it works. Why?

var waitRow = $(this).parent().parent().next().get(0);
$(waitRow).children('td:nth-child(2)').html('some text');
$(waitRow).toggle();
flag

25% accept rate

3 Answers

vote up 0 vote down

The first one tries to toggle the first item in the children('td:nth-child(2)') wrapped set. The html() method returns the first matched item and not the whole collection.

The second one toggles the whole row.

link|flag
vote up 3 vote down

Because you are toggling the child element, not waitRow, I believe you could use .end() for this:

$(waitRow).children('td:nth-child(2)').html('some text').end().toggle();

To go back to the parent. Or use .parent() again.

Reference: http://docs.jquery.com/Traversing/end

link|flag
What exactly does .end() do? – Ghommey Oct 20 at 7:30
It descends back to the prior jQuery object from the object it's currently at. – meder Oct 20 at 7:31
Ofcourse...i must be blind sometimes. Thank you! – Erik Z Oct 20 at 8:08
Sure. Don't forget to select an answer now :) – meder Oct 20 at 15:28
vote up 0 vote down

Maybe the first one tries to toggle the wrong dom object?

link|flag

Your Answer

Get an OpenID
or

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