vote up 0 vote down star
<html>

<head>
<title>Question</title>
<script type="text/javascript" >
function MouseOverHand(ID)
{
var Cursor='hand';
var ID=ID;
if (!document.all){ Cursor='pointer'; }
document.getElementById(ID).style.cursor=Cursor;    	
}
</script>
<script type="text/javascript" >
function MouseOverHelp(ID)
{
var Cursor='help';
var ID=ID;
if (!document.all){ Cursor='pointer'; }
document.getElementById(ID).style.cursor=Cursor;    	
}
</script>
</head>

<body>
<label id="Hand" onmouseover="MouseOverHand('Hand');" > Hand </label><br/><br/>
<label id="Help" onmouseover="MouseOverHelp('Help');" > Help </label>
</body>

</html>

In the above html is used to take mouse cursor in the mouse over of label's. Here "Hand" and "help" cursor is working fine in internet explore but its not working in firefox and other browser's

hoping your support,

flag

53% accept rate
i think you meant to tag this as javascript (not java) – mportiz08 Nov 8 at 8:09
Um, JavaScript is really unnecessary in this situation. I'd recommend you use a CSS solution. – Sam152 Nov 8 at 8:12
@mportiz08: Yea, I've re-tagged for the OP. – o.k.w Nov 8 at 8:20

3 Answers

vote up 1 vote down check

you don't need var Cursor if you can specify help or hand directly like so

document.getElementById(ID).style.cursor='hand';

and

document.getElementById(ID).style.cursor='help';

please check working example and take a look at the html source code

link|flag
vote up 1 vote down

Simpler version, works on 'all' browsers:

<script type="text/javascript" >
function MouseOverPointer(obj) //obj is the triggering element
{
    if(obj.id=='Help')
    	obj.style.cursor = "help";
    else if(obj.id=='Hand')
    	obj.style.cursor = "pointer";
}
</script>

<label id="Hand" onmouseover="MouseOverPointer(this);" > Hand </label><br/><br/>
<label id="Help" onmouseover="MouseOverPointer(this);" > Help </label>
link|flag
vote up 0 vote down

"Hand" does not work in Firefox. Try "pointer". "help", however, should work -- try applying the style in a more direct way than via JS.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.