How to capture a click on a href value using jQuery
- by tonsils
Hi,
I have the following HTML code in the backend, ie.
<div class="navi">
<a class="" href="0"></a>
<a class="" href="1"></a>
<a class="" href="2"></a>
<a class="" href="3"></a>
</div>
Apologies for the basic question but I would like to use jQuery to capture the user's click when they only click on the href value of "0"
Basically want to hide a div called "info" when the user clicks on the where the href="0"
Unsure how to do?
Thanks.