Ajaxbutton With Image

I want to have a image button ,with ajax call.

How to achieve this.

Thanks in advance

Use Jquery for this as




<input type="image" src=" link to image" onClick="jcallAjax();">


function callAjax(){

  $.ajax({

    url:'',

     data: ''

});

}