vote up 1 vote down star

I'm trying to find out the index number of the last list item but the jquery I'm using keeps returning -1. This is the JS and the html that I'm using.

var index = $('#imageThumbnails li:last').index(this);

<div id="imageThumbnails">
   <ul class="gallery_demo_unstyled">
      <li class="active"><img src="test-img.jpg" width="394" height="394" alt=" " /></li>
      <li><img src="test-img2.jpg" width="394" height="394" alt=" " /></li>
      <li><img src="test-img3.jpg" width="394" height="394" alt=" " /></li>
      <li><img src="test-img4.jpg" width="394" height="394" alt=" " /></li>
      <li><img src="test-img5.jpg" width="394" height="394" alt=" " /></li>
      <li><img src="test-img6.jpg" width="394" height="394" alt=" " /></li>
      <li><img src="test-img7.jpg" width="394" height="394" alt=" " /></li>
    </ul>
 </div>

Thanks for your help.

flag

1 Answer

vote up 2 vote down check

You need to call index on the collection, passing in a sub-item of that collection.

var items = $('#imageThumbnails li');
var lastItem = $('#imageThumbnails li:last');
var index = items.index(lastItem);

If you are in a click function handler you could do something like this:

var items = $('#imageThumbnails li').click(function() {
    var index = items.index(this);

    // now that I know where I am, why am I here?
});
link|flag
Thanks for your help! – Paul Sheldrake Oct 27 at 19:56
how would that second one work? – TStamper Oct 27 at 19:58
The items variable is included in the interior function's closure and will be available at the time the click function executes. Since that time will be in the future the whole expression will have been completed and items will have been set to the array of values that resulted from the expression. – joshperry Oct 27 at 20:04
@joshperry- yea I understand that part but the way you have it would you store the clicked index in the value, also can you click a list tag? – TStamper Oct 27 at 20:12
Sure, you can register a click event on almost any DOM element. Unordered lists are commonly used for menus and navigation bars, the list conveys the semantics of those constructs well. – joshperry Oct 27 at 20:15
show 2 more comments

Your Answer

Get an OpenID
or

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