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.

I have an un ordered list and the index of li tag.Now I have to get the li elemet by using that index and change background color.Is it possible without looping entire list?.I mean, Is ther any method that could achieve this functionality?

Here is my code, which I belive that would work...

 <script>
  var index = 3;
</script>
  <ul>
     <li>India</li>
     <li>Indonesia</li>
     <li>China</li>
     <li>United States</li>
     <li>United Kingdom</li>
   </ul>
<script>
  //I want to change bgColor of selected li element
  $('ul li')[index].css({'background-color':'#343434'});
  //Or, I have seen a function in Jquery doc, which gives nothing to me
  $('ul li').get(index).css({'background-color':'#343434'});
</script>
share|improve this question
2  
The two ways you're using there return dom elements rather than jQuery objects so the call to .css will not work on them. Darius' answer below using eq is what you want. – Richard Dalton Mar 27 '12 at 10:19

3 Answers

up vote 17 down vote accepted
$(...)[index]      // gives you the DOM element at index
$(...).get(index)  // gives you the DOM element at index
$(...).eq(index)   // gives you the jQuery object of element at index

DOM objects don't have css function, use the last...

$('ul li').eq(index).css({'background-color':'#343434'});

docs:

.get([index]) Returns: Element

Description: Retrieve the DOM elements matched by the jQuery object.

.eq(index) Returns: jQuery

Description: Reduce the set of matched elements to the one at the specified index.

share|improve this answer

Try that.

$('ul').find('li').eq(index).css({'background-color':'#343434'});

Documentation: http://jqapi.com/#p=eq-selector

share|improve this answer
You could have make the selector simpler with $('ul li').eq(index).css({'background-color':'#343434'}); – gdoron Mar 27 '12 at 10:33

You can use jQuery's .eq() method to get the element with a certain index.

$('ul li').eq(index).css({'background-color':'#343434'});
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.