Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an XML file setup like so:

<entry name="bob"></entry>
<entry name="ryan"></entry>
<entry name="joe"></entry>
...
<entry name="etc"></entry>

Next, I have a line of code that picks out a name from the XML like so:

var $user= $('entry[images="' + userName + '"]', xml);

But how do I find out what the index of $user is in the overall XML? Example: if userName was 'joe', I should get the number '2' back. Any suggestions?

share|improve this question
The two answers below are correct. Here's an example I put together to offer a bit of extra help: jsfiddle.net/UnNwf – Jamie Dixon Sep 9 '11 at 16:58
Cheers thank you! – Ninjection Sep 9 '11 at 17:09

3 Answers

up vote 1 down vote accepted

You can use the .index() method: http://api.jquery.com/index/

share|improve this answer
Thank you! Cheers. – Ninjection Sep 9 '11 at 17:09

I believe that this is what you are looking for: http://api.jquery.com/index/

share|improve this answer

jQuery's index() method is your friend. Look at this jQuery:

<script type="text/javascript">
window.onload = function() {
    $("div p").each(function() {
        $(this).append( $(this).attr("name")+$(this).index() );
    });
};
</script>

HTML:

<div>
<p name="tom"></p>
<p name="dick"></p>
<p name="harry"></p>
</div>

will produce:

tom0

dick1

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