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.

Ok so heres whats going on:

Whenever I click on an image nested in an unordered list, it moves to a different part on the page. But when it reaches the last li, I want it not to move. I am trying to find it out if there is anyway that the .last() function can return a boolean back?

Thanks, Rohan

share|improve this question

1 Answer

Instead of .last() which returns the last element in the set, for a given set if you have an element you can use .is() with :last-child, like this:

//abort out at top of the function
if($(this).closest('li').is(':last-child')) return; 

If the <li> is the last in the list, it'll return true for is(':last-child').

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.