i need a jscript that changes the style of the cursor when i mouseover an image...
i am currently trying this but it doesn't work:
function stylePointer(x)
{
//alert(x.style.cursor.type);
x.style.cursor.type = "hand";
}
<td onclick="submitDown()" onmouseover="stylePointer(this)" onmouseout="styleNormal(this)"><img border=0 src="button.gif">
i am currently trying this but it doesn't work:
function stylePointer(x)
{
//alert(x.style.cursor.type);
x.style.cursor.type = "hand";
}
<td onclick="submitDown()" onmouseover="stylePointer(this)" onmouseout="styleNormal(this)"><img border=0 src="button.gif">