From: Tomas K. <tom...@ne...> - 2000-11-28 22:18:12
|
Hi, I know this is not really the place to ask this question, but I don't know where else to post it... with several of my scripts I have a problem with the IE mousepointer when you click on a link that executes a script; an hourglas next to the mouse pointer, even though the page has finished loading. Anyone know the reason for this? This usually happends when I use "javascript: void(0)" in the HREF of a link. Thanks // Tomas |
From: Scott A. L. <sc...@sc...> - 2000-11-28 22:51:01
|
The "javascript:" protocol is probably still seen by the browser as being a request. Try using onClick instead and see if that helps. -- scott andrew lepera ----------------------------------- web stuff: www.scottandrew.com music stuff: www.walkingbirds.com "Tomas Källsen" wrote: > > Hi, > > I know this is not really the place to ask this question, but I don't > know where else to post it... with several of my scripts I have a > problem with the IE mousepointer when you click on a link that executes > a script; an hourglas next to the mouse pointer, even though the page > has finished loading. Anyone know the reason for this? This usually > happends when I use "javascript: void(0)" in the HREF of a link. > > Thanks > // Tomas > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Doug M. <do...@cr...> - 2000-11-28 23:13:17
|
onCLick is not suppoerted by Netscape... ----- Original Message ----- From: "Scott Andrew LePera" <sc...@sc...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 2:50 PM Subject: Re: [Dynapi-Help] Problems with IE mousepointer The "javascript:" protocol is probably still seen by the browser as being a request. Try using onClick instead and see if that helps. -- scott andrew lepera ----------------------------------- web stuff: www.scottandrew.com music stuff: www.walkingbirds.com "Tomas Källsen" wrote: > > Hi, > > I know this is not really the place to ask this question, but I don't > know where else to post it... with several of my scripts I have a > problem with the IE mousepointer when you click on a link that executes > a script; an hourglas next to the mouse pointer, even though the page > has finished loading. Anyone know the reason for this? This usually > happends when I use "javascript: void(0)" in the HREF of a link. > > Thanks > // Tomas > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Scott A. L. <sc...@sc...> - 2000-11-28 23:33:49
|
Huh? onClick is certainly supported by Netscape: <a href="#" onClick="someFunction(); return false;">Click me</a> The return false should prevent the page from chasing the "#" href. You can also set onclick with scripting: document.links[x].onclick = someFunction -- scott andrew lepera ----------------------------------- web stuff: www.scottandrew.com music stuff: www.walkingbirds.com Doug Melvin wrote: > > onCLick is not suppoerted by Netscape... > ----- Original Message ----- > From: "Scott Andrew LePera" <sc...@sc...> > To: <dyn...@li...> > Sent: Tuesday, November 28, 2000 2:50 PM > Subject: Re: [Dynapi-Help] Problems with IE mousepointer > > The "javascript:" protocol is probably still seen by the browser as > being a request. Try using onClick instead and see if that helps. > > -- > scott andrew lepera > ----------------------------------- > web stuff: www.scottandrew.com > music stuff: www.walkingbirds.com > > "Tomas Källsen" wrote: > > > > Hi, > > > > I know this is not really the place to ask this question, but I don't > > know where else to post it... with several of my scripts I have a > > problem with the IE mousepointer when you click on a link that executes > > a script; an hourglas next to the mouse pointer, even though the page > > has finished loading. Anyone know the reason for this? This usually > > happends when I use "javascript: void(0)" in the HREF of a link. > > > > Thanks > > // Tomas > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Brandon M. <bnd...@ho...> - 2000-11-28 23:51:59
|
onClick IS supported in Netscape on link objects. What are you smokin' man? ----- Original Message ----- From: "Doug Melvin" <do...@cr...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 9:11 PM Subject: Re: [Dynapi-Help] Problems with IE mousepointer > onCLick is not suppoerted by Netscape... > ----- Original Message ----- > From: "Scott Andrew LePera" <sc...@sc...> > To: <dyn...@li...> > Sent: Tuesday, November 28, 2000 2:50 PM > Subject: Re: [Dynapi-Help] Problems with IE mousepointer > > > The "javascript:" protocol is probably still seen by the browser as > being a request. Try using onClick instead and see if that helps. > > -- > scott andrew lepera > ----------------------------------- > web stuff: www.scottandrew.com > music stuff: www.walkingbirds.com > > > "Tomas Källsen" wrote: > > > > Hi, > > > > I know this is not really the place to ask this question, but I don't > > know where else to post it... with several of my scripts I have a > > problem with the IE mousepointer when you click on a link that executes > > a script; an hourglas next to the mouse pointer, even though the page > > has finished loading. Anyone know the reason for this? This usually > > happends when I use "javascript: void(0)" in the HREF of a link. > > > > Thanks > > // Tomas > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: Doug M. <do...@cr...> - 2000-11-29 00:12:10
|
um.. then why did I have to write my own event handlers of onclick? Are we talking normal links here? or some sort of Dynlink? ----- Original Message ----- From: "Brandon Myers" <bnd...@ho...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 3:53 PM Subject: Re: [Dynapi-Help] Problems with IE mousepointer onClick IS supported in Netscape on link objects. What are you smokin' man? ----- Original Message ----- From: "Doug Melvin" <do...@cr...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 9:11 PM Subject: Re: [Dynapi-Help] Problems with IE mousepointer > onCLick is not suppoerted by Netscape... > ----- Original Message ----- > From: "Scott Andrew LePera" <sc...@sc...> > To: <dyn...@li...> > Sent: Tuesday, November 28, 2000 2:50 PM > Subject: Re: [Dynapi-Help] Problems with IE mousepointer > > > The "javascript:" protocol is probably still seen by the browser as > being a request. Try using onClick instead and see if that helps. > > -- > scott andrew lepera > ----------------------------------- > web stuff: www.scottandrew.com > music stuff: www.walkingbirds.com > > > "Tomas Källsen" wrote: > > > > Hi, > > > > I know this is not really the place to ask this question, but I don't > > know where else to post it... with several of my scripts I have a > > problem with the IE mousepointer when you click on a link that executes > > a script; an hourglas next to the mouse pointer, even though the page > > has finished loading. Anyone know the reason for this? This usually > > happends when I use "javascript: void(0)" in the HREF of a link. > > > > Thanks > > // Tomas > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Brandon M. <bnd...@ho...> - 2000-11-29 00:24:34
|
Normal links.... I have always been able to apply an onclick handler. either by: document.links[x].onclick=myClickHandler or directly in the HTML with all the prior examples that people have sent. ----- Original Message ----- From: "Doug Melvin" <do...@cr...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 10:10 PM Subject: Re: [Dynapi-Help] Problems with IE mousepointer > um.. then why did I have to write my own event handlers of onclick? > Are we talking normal links here? or some sort of Dynlink? > > ----- Original Message ----- > From: "Brandon Myers" <bnd...@ho...> > To: <dyn...@li...> > Sent: Tuesday, November 28, 2000 3:53 PM > Subject: Re: [Dynapi-Help] Problems with IE mousepointer > > > onClick IS supported in Netscape on link objects. > > What are you smokin' man? > > ----- Original Message ----- > From: "Doug Melvin" <do...@cr...> > To: <dyn...@li...> > Sent: Tuesday, November 28, 2000 9:11 PM > Subject: Re: [Dynapi-Help] Problems with IE mousepointer > > > > onCLick is not suppoerted by Netscape... > > ----- Original Message ----- > > From: "Scott Andrew LePera" <sc...@sc...> > > To: <dyn...@li...> > > Sent: Tuesday, November 28, 2000 2:50 PM > > Subject: Re: [Dynapi-Help] Problems with IE mousepointer > > > > > > The "javascript:" protocol is probably still seen by the browser as > > being a request. Try using onClick instead and see if that helps. > > > > -- > > scott andrew lepera > > ----------------------------------- > > web stuff: www.scottandrew.com > > music stuff: www.walkingbirds.com > > > > > > "Tomas Källsen" wrote: > > > > > > Hi, > > > > > > I know this is not really the place to ask this question, but I don't > > > know where else to post it... with several of my scripts I have a > > > problem with the IE mousepointer when you click on a link that executes > > > a script; an hourglas next to the mouse pointer, even though the page > > > has finished loading. Anyone know the reason for this? This usually > > > happends when I use "javascript: void(0)" in the HREF of a link. > > > > > > Thanks > > > // Tomas > > > _______________________________________________ > > > Dynapi-Help mailing list > > > Dyn...@li... > > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > > > _______________________________________________ > > Dynapi-Help mailing list > > Dyn...@li... > > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Matthew S. <PK...@Tu...> - 2000-11-29 00:14:21
|
OnClick is not supported on images in Netscape, it is on Links. If you want to make a simple image clickable wrap it in an Anchor tag. Don't forget to set the border attribute of the img tag to 0 to get rid of that nasty blue border. -- Matthew -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Doug Melvin Sent: Tuesday, November 28, 2000 6:12 PM To: dyn...@li... Subject: Re: [Dynapi-Help] Problems with IE mousepointer onCLick is not suppoerted by Netscape... ----- Original Message ----- From: "Scott Andrew LePera" <sc...@sc...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 2:50 PM Subject: Re: [Dynapi-Help] Problems with IE mousepointer The "javascript:" protocol is probably still seen by the browser as being a request. Try using onClick instead and see if that helps. -- scott andrew lepera ----------------------------------- web stuff: www.scottandrew.com music stuff: www.walkingbirds.com "Tomas Källsen" wrote: > > Hi, > > I know this is not really the place to ask this question, but I don't > know where else to post it... with several of my scripts I have a > problem with the IE mousepointer when you click on a link that executes > a script; an hourglas next to the mouse pointer, even though the page > has finished loading. Anyone know the reason for this? This usually > happends when I use "javascript: void(0)" in the HREF of a link. > > Thanks > // Tomas > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Doug M. <do...@cr...> - 2000-11-29 15:17:37
|
Ah, right. that's it. my mistake. Doug ----- Original Message ----- From: "Matthew Shirey" <PK...@tu...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 4:14 PM Subject: RE: [Dynapi-Help] Problems with IE mousepointer OnClick is not supported on images in Netscape, it is on Links. If you want to make a simple image clickable wrap it in an Anchor tag. Don't forget to set the border attribute of the img tag to 0 to get rid of that nasty blue border. -- Matthew -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Doug Melvin Sent: Tuesday, November 28, 2000 6:12 PM To: dyn...@li... Subject: Re: [Dynapi-Help] Problems with IE mousepointer onCLick is not suppoerted by Netscape... ----- Original Message ----- From: "Scott Andrew LePera" <sc...@sc...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 2:50 PM Subject: Re: [Dynapi-Help] Problems with IE mousepointer The "javascript:" protocol is probably still seen by the browser as being a request. Try using onClick instead and see if that helps. -- scott andrew lepera ----------------------------------- web stuff: www.scottandrew.com music stuff: www.walkingbirds.com "Tomas Källsen" wrote: > > Hi, > > I know this is not really the place to ask this question, but I don't > know where else to post it... with several of my scripts I have a > problem with the IE mousepointer when you click on a link that executes > a script; an hourglas next to the mouse pointer, even though the page > has finished loading. Anyone know the reason for this? This usually > happends when I use "javascript: void(0)" in the HREF of a link. > > Thanks > // Tomas > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Matthew S. <PK...@Tu...> - 2000-11-28 23:17:16
|
Instead try this for a link... <a href="#" OnClick="someFunction();return false">Link Text<a/> using "javascript:" causes many problems, one of which is the one you are having. Don't forget the "return false" it needs to be there. Hope this helps, -- Matthew -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Tomas Kdllsen Sent: Tuesday, November 28, 2000 2:19 PM To: dyn...@li... Subject: [Dynapi-Help] Problems with IE mousepointer Hi, I know this is not really the place to ask this question, but I don't know where else to post it... with several of my scripts I have a problem with the IE mousepointer when you click on a link that executes a script; an hourglas next to the mouse pointer, even though the page has finished loading. Anyone know the reason for this? This usually happends when I use "javascript: void(0)" in the HREF of a link. Thanks // Tomas _______________________________________________ Dynapi-Help mailing list Dyn...@li... http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Raymond S. <dst...@or...> - 2000-11-29 00:36:50
|
It's a known bug... go here for the cure. http://www.web-wise-wizard.com/javascript-tutorials/browser-phantom-busy-cur sor.html ----- Original Message ----- From: "Tomas Källsen" <tom...@ne...> To: <dyn...@li...> Sent: Tuesday, November 28, 2000 2:18 PM Subject: [Dynapi-Help] Problems with IE mousepointer > Hi, > > I know this is not really the place to ask this question, but I don't > know where else to post it... with several of my scripts I have a > problem with the IE mousepointer when you click on a link that executes > a script; an hourglas next to the mouse pointer, even though the page > has finished loading. Anyone know the reason for this? This usually > happends when I use "javascript: void(0)" in the HREF of a link. > > Thanks > // Tomas > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |