Feedback: irt.org FAQ Knowledge Base Q426
Feedback on: irt.org FAQ Knowledge Base Q426
Sent by Michael Zalewski on November 10, 1999 at 20:48:35: - feedback #578
Comments: Unfortunately, the answer is incorrect (unless the long process pauses for user input, or unless the long process is run in a new thread). For example, the following page does not work <HTML><HEAD><TITLE>Hourglass Test</TITLE></HEAD> <SCRIPT LANGUAGE="JavaScript"> function doTime() { setPointer(); for( i = 1; i < 1000; i++) for( j = 1; j < 1000; j++); resetPointer(); } <SCRIPT LANGUAGE="JavaScript"></SCRIPT> <BODY><INPUT TYPE=submit ONCLICK=doTime() VALUE='Click Me'> </BODY>
Sent by Sujith Mysore on Saturday July 28, 2007 at 00:56:18 - feedback #4844
Worth:
Length:
Technical: Not technical enough
Comments: try this, it works... <form runat="server" onsubmit="document.body.style.cursor = 'wait';">
Sent by Sujith Mysore on Saturday July 28, 2007 at 01:08:50 - feedback #4845
Worth: Worth reading
Length:
Technical:
Comments: add the following to the form tag.... it works... onsubmit="document.body.style.cursor = 'wait';"
|