Changing mouse pointer to "hourglass" while loading cgi-page in Internet Explorer

S

sysadm

Hello *,

my Internet Explorer doesn't display the hourglass mouse pointer while
I wait for a cgi-page to finish loading. I'm using IE V6 SP2. Mozilla
works properly and shows that the appropriate mouse pointer.

Any ideas whether I could influence the displayed mouse pointer through
html or cgi programming.

Thank you in advance,

Greg
 
B

Bart Van der Donck

sysadm said:
my Internet Explorer doesn't display the hourglass mouse pointer while
I wait for a cgi-page to finish loading. I'm using IE V6 SP2. Mozilla
works properly and shows that the appropriate mouse pointer.

Any ideas whether I could influence the displayed mouse pointer through
html or cgi programming.

Please note that this has nothing to do with Perl or CGI - it's just a
display method of the browser. The following computer code demonstrates
the prinicple in Microsoft Internet Explorer:

<body id="mybody">
<script language="javascript" type="text/javascript">
ch_cursor('wait');
setTimeout("ch_cursor('auto');", 2000);
function ch_cursor(cur) {
alert('Cursor is now: ' + cur);
mybody.style.cursor = cur;
}
</script>
</body>

You could invoke ch_cursor('wait') at the beginning of the loading and
ch_cursor('auto') when the loading is done.

Hope this helps,
 

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

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top