web apps and cursors

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does anyone know how to programatically change the cursor to an hour-glass
and back to the default cursor within a web application? Everything I find
only discusses how to do it in a Windows application.

tia,
Sue
 
Change to hour-glass:
document.body.style.cursor = 'wait';

To default:
document.body.style.cursor = 'default';

Does anyone know how to programatically change the cursor to an hour-glass
and back to the default cursor within a web application? Everything I find
only discusses how to do it in a Windows application.

tia,
Sue
 
Sorry - should have been more specific. Any way to do this using server-side
code?

tia,
Sue
 
Nope. Only possible on client side.

Sorry - should have been more specific. Any way to do this using server-side
code?

tia,
Sue
 
That's what I was afraid of. Thanks for the clarification. Off to the land of
client-side then....

Sue
 
Back
Top