I have:
A frame that contains a form. In this form there are push buttons, options buttons, and drop down boxes.
I am trying to change the mouse cursor over each of these items. It changes on all of the elements except the drop down boxes.
This is what I use:
var elemArray = parent.myFrame.document.myForm.elements;
var length = elemArray.length
for(i=0; i<length; i++)
{
elemArray.style.cursor = "hand";
}
Why does it not change over the drop down box? How can I make it change over the drop down box?
Thanks in advance.
A frame that contains a form. In this form there are push buttons, options buttons, and drop down boxes.
I am trying to change the mouse cursor over each of these items. It changes on all of the elements except the drop down boxes.
This is what I use:
var elemArray = parent.myFrame.document.myForm.elements;
var length = elemArray.length
for(i=0; i<length; i++)
{
elemArray.style.cursor = "hand";
}
Why does it not change over the drop down box? How can I make it change over the drop down box?
Thanks in advance.