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>