I'm trying to obtain a specific li element from a unordered list.
I'm doing it this way:
var listItem = $('ul.selectedItems').filter(list[i].ID);
Any idea of why this isn't working?
|
|
|
|
|
|
|
The However, the best way to do it is like this:
For more information on jQuery selectors, see here. |
||
|
|
|
|
I think you can do something like this:
If you don't know the id of the element, but you know it's position you can do this:
|
|||
|
|
|
|
This returns only the ul, your selector should return li's
But if you have the li's id you can do this
|
||||
|