I have a list with some LI links.
I want to add a class to this li when the link is clicked, here you are my code:
<ul id="sliders_buttons_list">
<a href="#" uid="1">
<li class="" uid="1">
First tab
</li>
</a>
<a href="#" uid="2">
<li class="" uid="2">
Second tab
</li>
</a>
<a href="#" uid="3">
<li class="" uid="3">
Third tab
</li>
</a>
</ul>
If I click the link with uid = 1 I wand to add a new class to the li with uid = 1
Thanks!
uidis not an existing valid attribute. Usedata-uidinstead. – DarthJDG May 3 '11 at 15:42