Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How to set the cursor to wait?
How to set the cursor to wait?
✍: Guest
In theory, we should cache the current state of the cursor and then put it back to its original state.
document.body.style.cursor = 'wait';
//do something interesting and time consuming
document.body.style.cursor = 'auto';
2009-02-10, 4837👍, 0💬
Popular Posts:
Can one execute dynamic SQL from Forms? Yes, use the FORMS_DDL built-in or call the DBMS_SQL databas...
If we inherit a class do the private variables also get inherited ? Yes, the variables are inherited...
Can you have virtual functions in Java? Yes, all functions in Java are virtual by default. This is a...
What is a delegate ? Delegate is a class that can hold a reference to a method or a function. Delega...
Can two catch blocks be executed? No, once the proper catch section is executed the control goes fin...