cancel
Showing results for 
Search instead for 
Did you mean: 

When i move the cursor into this button instead of Arrow mark i need hand i

Former Member
0 Kudos

Hi friends,

I have a button like below .

<input type=submit name="onInputProcessing(select)" value=" Material ">

When i move the cursor into this button instead of Arrow mark i need hand sign.

Moosa

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos
Former Member
0 Kudos

hi srividya

thanks for ur reply.

its not working

Former Member
0 Kudos

hi use onmouseover event in your button and set the cursor style for button through java script

function cursor() -


> include this function between your script tag

{

var e = document.getElementById('select');

e.style.cursor ="hand";

}

call this function in your button onmouseover event

Answers (0)