vote up 0 vote down star

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?

flag

3 Answers

vote up 3 vote down check

The filter method takes a regular jQuery selector, so you should be writing filter("#"+list[i].ID). (Assuming that list[i].ID is the id attribute of an li element). Also, the filter method searches the elements contained in your jQuery object, not their children; you should be calling the children method instead. See the documentation.


However, the best way to do it is like this:

var listItem = $('ul.selectedItems li#' + list[i].ID);

For more information on jQuery selectors, see here.

link|flag
vote up 0 vote down

I think you can do something like this:

  $("ul.selectedItems li").each(function(){
    if ($(this).is('#mypreferedid')) {
       //do something here
       return false; //to stop cycling
    }
  });

If you don't know the id of the element, but you know it's position you can do this:

  $("ul.selectedItems li").each(function(index, element){
    if (index == selectedPosition) {
       //do something here
       return false; //to stop cycling
    }
  });
link|flag
vote up 1 vote down

This returns only the ul, your selector should return li's

var listItem = $('ul.selectedItems li').filter(list[i].ID);

But if you have the li's id you can do this

var listItem = $('#' + liId);
link|flag
You basically repeated the code I was using. – Raúl Roa Aug 25 at 14:48
But I made it work. – Daniel Moura Aug 25 at 15:08

Your Answer

Get an OpenID
or

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