select click on mouseover

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:

  1. <img src="images/property/property1.jpg" alt="">
  2.         <span class="property-category">
  3.             <a class="addlist" href="#">
  4.                   <img src="images/fav-book-icons.png"</a>
  5.       </span>
My jquery;
  1. $(document).ready(function(){
  2.           $('.addlist').mouseover({
  3.                   alert("click");
  4.              
  5.           });
  6.       });
nothing appears. 

Thanks