HTML:
<ul> <li>Help</li> <li>me</li> <li>Stack</li> <li>Overflow!</li> </ul> <br> <ul> <li>Can</li> <li>I</li> <li>connect</li> <li>these?</li> </ul>
Javascript / jQuery:
$("li").live('click', function(){ alert($(this).index()); });
I put together a simple jsfilled page to help describe my problem: http://jsfiddle.net/T4tz4/
Currently pressing LI warns the index of the current UL group. I would like to know if it is possible to get a "global index", so clicking on "Can" returns an index value of 4.
Thanks, John
source share