I have an XML structure where some elements are repeated inside the parent element, and i want to pick the first of the repeated element, how can i achieve that. $(doc).find('myElement').text() returns the concat value of both the elements, can i have only the first value.

Appreciate the help in advance.

Vaibhav

link|improve this question

41% accept rate
feedback

3 Answers

up vote 1 down vote accepted

have you tried: $(doc).find('myElement').first().text() ?

link|improve this answer
feedback
$(doc).find('myElement').eq(0).text();
link|improve this answer
feedback

You could use XPath to retrive the information . Can you post the XML file ?

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.