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>');
|
How would i select the below item, i do not want to select every LI of How is this possible?
|
||||
|
|
|
Use the
Alternate option: consider creating the element slightly differently.
|
|||
|
|
You could do it the other way around using
This way you don't have to select it after appending it. |
||||
|
|
|||||||||
|