I tried following code:
<script type="text/javascript">
$(document).ready(function(){
$("image").hover(
function () {
$(this).append($("<span> ***</span>"));
},
function () {
$(this).find("span:last").remove();
}
);
});
<img alt="" src="../../Content/Disp.gif" />
It did not work. even use $("img"). Does it mean hover not working for image?