what's the better/elegant way to do this?
jQuery(this).find('title').next().next().next().eq(0).text(); //THIS WORKS
i tried using
jQuery(this).find('title').eq(3) //DOESN't WORK
but it doesnt...
|
what's the better/elegant way to do this?
i tried using
but it doesnt... |
|||||||
|
|
What about |
||||
|
|
|
.eq() is working on the set of matched elements in the chain. So
is finding the 4th of a set of elements matching .find('title'). what you probably want is
|
|||
|
|
|
Here is a jsbin example to play with.... |
|||
|
|