how to trigger click on the image inside search bar image look like magnifying glass and it came from css

how to trigger click on the image inside search bar image look like magnifying glass and it came from css


how to trigger click on the image inside search bar ,image look like magnifying glass and it came from css

code//....................

 <form class="left2">
      <input type="text" class="form-control top-srch-input" id="search" placeholder="Enter City, Listing ID,            Address ">
</form>


class//.................

.top-srch-input  {
  1. width 320px;
  2. height 37px;
  3. color #2b2c30;
  4. background #ffffffurl(../images/magnify.png) right no-repeat;
  5. border none;
  6. padding-right 40px;
}


i tried this but failed//..........

$("#search img").click(function()
{
alert('image clicked');
});