select click on mouseover
Hi there, I have an image and on image I put an icon, that you can see when the mouse is over the image. I would like catch the click on icon.
my html code:
- <img src="images/property/property1.jpg" alt="">
- <span class="property-category">
- <a class="addlist" href="#">
- <img src="images/fav-book-icons.png"</a>
- </span>
My jquery;
- $(document).ready(function(){
- $('.addlist').mouseover({
- alert("click");
-
- });
- });
nothing appears.
Thanks