Hi,
I'm trying to find out a way to know the index of a anchor tag inside a certain div (one div has multiple similar anchor tags), like this :
<div>
<a>first</a>
<a>second</a>
<a>third</a>
</div>
I'm using jQuery, but so far found no sollution to find the index of the anchor I have the mouse currently over.
Any ideas?
Cheers!