5,696,038 members and growing! (12,644 online)
Email Password   helpLost your password?
Web Development » Client side scripting » General     Intermediate

Hourglass cursor for Web/ASP.NET pages

By raouls

Show your users that something *is* actually happening when you do a postback on a web form.
Javascript, HTML, Windows, .NET, Visual Studio, ASP.NET, Dev

Posted: 10 Sep 2004
Updated: 10 Sep 2004
Views: 71,858
Bookmarked: 21 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
34 votes for this Article.
Popularity: 6.40 Rating: 4.18 out of 5
2 votes, 5.9%
1
2 votes, 5.9%
2
2 votes, 5.9%
3
8 votes, 23.5%
4
20 votes, 58.8%
5

Introduction

In one of our ASP.NET projects at work, some of the controls caused a post back, but didn't actually change the page visibly. So, we wanted to show an hourglass cursor, like a normal Windows app does when it's busy, to show that the ASP app was actually doing some work, and that the user should wait till it was finished.

JavaScript to the rescue!

Now, I'm a big fan of XHTML and CSS, so my first thought was to CSS... but to implement that dynamically was looking quite hectic... then I thought a bit... "But wait! What about JavaScript?"

JavaScript can be used to do some nifty client-side things, like changing the cursor. In fact, the solution is so simple, it's only about two lines of code.

All you need to do is to write a function like this:

function doHourglass()
{
  document.body.style.cursor = 'wait';
}

Quite simple, huh?

The next step is to get the web form to call that function when a post back occurs. Well, that is another very simple addition. This time, just add an event handler to your body tag in your page.

<body onbeforeunload="doHourglass();" onunload="doHourglass();">

Points of Interest

The first question you're probably asking is, "Why is there both an onbeforeunload and an onunload event handler?" The reason for that is that if your app is being viewed in IE, it seems to prefer the onbeforeunload, whereas other browsers seem to prefer the onunload.

You might also be asking why there is no code to set the cursor back. Well, mainly because there is no need for it. As far as the browser is concerned, this is a new page, so it sets the mouse cursor back to the default pointer.

Further Afield

What we did, so that we don't need to rewrite that JavaScript function in every single page, was to add it to a script file (like "script.js") and then just reference the file in every page. That way, we can also change the operation of the function easily, as it is only changed in one place. And a further advantage is that if we need to add more JavaScript functions, they can be added to our script file, and used on the appropriate page.

History

10 September 2004 - First posting.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

raouls


just another of these programming types... knows a little bit about c, c++, java, vc++ and c#... knows a little bit more about delphi... knows a little bit less about natural, cobol and basic... does the web thing from time to time and is heavily into standards compliance... prefers linux to windows too...
Occupation: Web Developer
Location: South Africa South Africa

Other popular Client side scripting articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 11 of 11 (Total in Forum: 11) (Refresh)FirstPrevNext
GeneralI recommend adding onfocus event to body tagmemberSthrudel3:46 6 Dec '06  
GeneralWhat if hourglass cursor is over link?memberMircea Grelus2:05 21 Feb '06  
GeneralUse for button click eventsussAnonymous22:21 3 Jul '05  
GeneralNot a W3C DOM StandardmemberDFU238:20 22 Sep '04  
GeneralRe: Not a W3C DOM Standardmemberraouls4:11 28 Sep '04  
GeneralSmartNav problemmemberStephenMSmith1:01 17 Sep '04  
GeneralRe: SmartNav problemsussAnonymous7:31 17 Sep '04  
GeneralRe: SmartNav problemmemberStephenMSmith15:12 17 Sep '04  
GeneralSimple solutionmemberWoutL14:41 11 Sep '04  
GeneralRe: Simple solutionsussAnonymous1:33 16 Sep '04  
GeneralRe: Simple solutionmemberraouls9:24 17 Sep '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 10 Sep 2004
Editor: Smitha Vijayan
Copyright 2004 by raouls
Everything else Copyright © CodeProject, 1999-2008
Web09 | Advertise on the Code Project