-
hour glass in Internet Explorer 5.5
Hi,
I have developed a page in ASP which would link to another page. I had it
running on Internet Explorer 4.0 and there use to be an hour glass that appears
while the link is recieving it's parameters. Now at IE 5.5, the hour glass
is gone. is there a way to get the hour glass back through the setting or
do I have to program the hour glass on an onclick event. Thanks in advance.
Mark
-
Re: hour glass in Internet Explorer 5.5
This should help. Set the document.style.cursor property to "wait" in the
onclick event and then navigate to the new URL. For example.
<input type="button" onclick="this.style.cursor='wait';
document.location.href='http://www.devx.com'" value="Goto DevX">
"Mark" <mthead28@hotmail.com> wrote in message
news:3bf01a4b@147.208.176.211...
>
> Hi,
>
> I have developed a page in ASP which would link to another page. I had it
> running on Internet Explorer 4.0 and there use to be an hour glass that
appears
> while the link is recieving it's parameters. Now at IE 5.5, the hour
glass
> is gone. is there a way to get the hour glass back through the setting or
> do I have to program the hour glass on an onclick event. Thanks in
advance.
>
> Mark
>
-
Re: hour glass in Internet Explorer 5.5
Hi,
what if the link is a <a href> tag. I can do it on button, but is there
a way to apply this event in the hyperlink?
Thanks.
"Russell Jones" <arj1@northstate.net> wrote:
>This should help. Set the document.style.cursor property to "wait" in the
>onclick event and then navigate to the new URL. For example.
>
><input type="button" onclick="this.style.cursor='wait';
>document.location.href='http://www.devx.com'" value="Goto DevX">
>
>
>"Mark" <mthead28@hotmail.com> wrote in message
>news:3bf01a4b@147.208.176.211...
>>
>> Hi,
>>
>> I have developed a page in ASP which would link to another page. I had
it
>> running on Internet Explorer 4.0 and there use to be an hour glass that
>appears
>> while the link is recieving it's parameters. Now at IE 5.5, the hour
>glass
>> is gone. is there a way to get the hour glass back through the setting
or
>> do I have to program the hour glass on an onclick event. Thanks in
>advance.
>>
>> Mark
>>
>
>
-
Re: hour glass in Internet Explorer 5.5
In exactly the same way. For example, this not only turns the cursor into an
hourglass when it's over the link, but also sets the hourglass cursor for
the entire document.
<a href="http://www.devx.com" onclick="this.style.cursor='wait';
document.body.style.cursor='wait';">DevX</a>
"Mark" <mthead28@hotmail.com> wrote in message
news:3bf15af9@147.208.176.211...
>
> Hi,
>
> what if the link is a <a href> tag. I can do it on button, but is there
> a way to apply this event in the hyperlink?
>
> Thanks.
>
>
> "Russell Jones" <arj1@northstate.net> wrote:
> >This should help. Set the document.style.cursor property to "wait" in the
> >onclick event and then navigate to the new URL. For example.
> >
> ><input type="button" onclick="this.style.cursor='wait';
> >document.location.href='http://www.devx.com'" value="Goto DevX">
> >
> >
> >"Mark" <mthead28@hotmail.com> wrote in message
> >news:3bf01a4b@147.208.176.211...
> >>
> >> Hi,
> >>
> >> I have developed a page in ASP which would link to another page. I had
> it
> >> running on Internet Explorer 4.0 and there use to be an hour glass that
> >appears
> >> while the link is recieving it's parameters. Now at IE 5.5, the hour
> >glass
> >> is gone. is there a way to get the hour glass back through the setting
> or
> >> do I have to program the hour glass on an onclick event. Thanks in
> >advance.
> >>
> >> Mark
> >>
> >
> >
>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks