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

How would i select the below item, i do not want to select every LI of .top but just the LI i have just created on the append.

How is this possible?

$('.top').append('<li><span>' + html + '</span></li>');
share|improve this question

3 Answers

up vote 4 down vote accepted

Use the :last pseudo-class selector.

$('.top > li:last')

Alternate option: consider creating the element slightly differently.

var $li = $('<li><span>' + html + '</span></li>');
$('.top').append($li);
// you already have the <li> selected, in $li
share|improve this answer
Thanks for your answer Matt, this worked more inline with my code with just a simple .find() on the end! – Xavier Sep 8 '11 at 14:26

You could do it the other way around using appendTo()

var li = $('<li><span>' + html + '</span></li>').appendTo('.top');

This way you don't have to select it after appending it.

share|improve this answer
Thanks for your answer Richard! – Xavier Sep 8 '11 at 14:26
Using appendTo as described in this answer instead of append+select should have better performance and be 'safer' in regards to be 100% sure to select the right element ... – mxro Aug 19 '12 at 22:19

You could probably select the last one:

$('.top').last()

See: http://api.jquery.com/last/

share|improve this answer
3  
That will select the last .top matched; whilst reading the question, I assumed that .top was a <ul>, and the OP wanted to retrieve the <li> he had just append()ed to .top; in which case your code snippet won't work.... or (equally possibly!) I read the question wrong :). – Matt Sep 8 '11 at 14:14
Ahh, I stand corrected. It was a bit sloppy reading and thinking here. – UlfR Sep 8 '11 at 14:20
Thanks for answer, though i wanted to select the child of .top, the <li> element of the <ul class="top"> – Xavier Sep 8 '11 at 14:27

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.