Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to retain Hourglass while submitting a page.

Status
Not open for further replies.

kiran1331

Programmer
Dec 12, 2002
2
0
0
IN
Hi ALL,
I am submitting a page.After submission I want to retain Hourglass.In that page I am having IFRAME. The hour glass is visible when it is focused out of form elements but when I take the cursor over the form elements like text box hourglass is not visible and in place of that pointed cursor is appeared.
pls help me out.
 
Here it's a simple example
Code:
function setHand()
{
	frm=document.forms["frmData"]
	for(i=0;i<frm.childNodes.length;i++)
	{
		frm.childNodes[i].style.cursor='hand';
		alert(frm.childNodes[i].tagName)
	}
}
</script>

<body onload=&quot;setHand()&quot;>
<FORM name=&quot;frmData&quot; id=&quot;frmData&quot; style=&quot;cursor:hand&quot;>
....

This should make all objects have hand as cursor.


________
George, M
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top