Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Could you show us the markup? – Andrew M Dec 3 '10 at 21:38
And what error do you see with the second line of code? – Sean Vieira Dec 3 '10 at 21:38
index goes from 0,1,2 – kobe Dec 3 '10 at 21:40

3 Answers

up vote 4 down vote accepted

What about nextAll().eq(2) ? That should be the third item. And append .text() afterwards. If that's not it, can you provide the markup?

share|improve this answer
updated answer, forgot to add nextAll – meder Dec 3 '10 at 21:46

.eq() is working on the set of matched elements in the chain. So

jQuery(this).find('title').eq(3)

is finding the 4th of a set of elements matching .find('title').

what you probably want is

jQuery(this).find('title').nextAll().eq(2).text()
share|improve this answer

Here is a jsbin example to play with....

http://jsbin.com/utuco3/4/edit.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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