standard button with onclick

<input type="button" value="search" onclick="alert('submitted');">

image with onclick

<img src="button.gif" alt="" onclick="alert('submitted');">

image with onclick & alt

search

<img src="button.gif" alt="search" onclick="alert('submitted');">

image with onclick & alt & role

search

<img src="button.gif" alt="search" role="button" onclick="alert('submitted');">

image with onclick & alt & role & tabindex

search

<img src="button.gif" alt="search" role="button" tabindex="0" onclick="alert('submitted');">

image with onclick & alt & role & tabindex & onkeypress

search

<img src="button.gif" alt="search" role="button" tabindex="0" onkeypress="if(event.keyCode==32||event.keyCode==13){alert('submitted')};" onclick="alert('submitted');">