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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top