I have the following HTML:
<ul id="tabs">
<li><a href="...">One</a></li>
<li><a href="...">Two</a></li>
<li><a href="...">Three</a></li>
</ul>
I want to perform a unique action when someone clicks on each of the links.
I tried the following and it did not work
$("#tabs li").eq(1).live('click',function(){alert('ONE....');});
$("#tabs li").eq(2).live('click',function(){alert('TWO......');});
$("#tabs li").eq(3).live('click',function(){alert('THREE......');});
Any idea how I can perform a unique action when someone on the link?
Thanks