PC Review
Forums
Newsgroups
Hardware
Freeware
Mozilla Firefox Question
Forums
Newsgroups
Hardware
Freeware
Mozilla Firefox Question
![]() |
Mozilla Firefox Question |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
I'm trying to display the current time on a webpage
(http://home.maine.rr.com/k3/_temp/sample.htm) and I can't figure out why it "flickers" only in Mozilla and Firefox. It works great with all other browsers. Thanks! -- Kendall F. Stratton III Fort Fairfield, Maine USA k3@(86_THE_SPAM)maine.rr.com http://home.maine.rr.com/k3 "Support bacteria -- it's the only culture some people have!" |
|
|
|
#2 |
|
Guest
Posts: n/a
|
try checking for update drivers for your vga
the site works prefect on my system using IE, Maxthon and Firefox -- Lius "K3" <k3@(86_THE_SPAM)maine.rr.com> wrote in message news:Mnc6e.1367$%v6.511@twister.nyroc.rr.com... > I'm trying to display the current time on a webpage > (http://home.maine.rr.com/k3/_temp/sample.htm) and I can't figure out why > it > "flickers" only in Mozilla and Firefox. It works great with all other > browsers. > > Thanks! > > -- > Kendall F. Stratton III > Fort Fairfield, Maine USA > k3@(86_THE_SPAM)maine.rr.com > http://home.maine.rr.com/k3 > > "Support bacteria -- it's the only culture some people have!" > > |
|
|
|
#3 |
|
Guest
Posts: n/a
|
I spoke too soon.........
it's happening in my Firefox too -- Lius http://www.pricelesswarehome.org/20...PL-CD-about.php "K3" <k3@(86_THE_SPAM)maine.rr.com> wrote in message news:Mnc6e.1367$%v6.511@twister.nyroc.rr.com... > I'm trying to display the current time on a webpage > (http://home.maine.rr.com/k3/_temp/sample.htm) and I can't figure out why > it > "flickers" only in Mozilla and Firefox. It works great with all other > browsers. > > Thanks! > > -- > Kendall F. Stratton III > Fort Fairfield, Maine USA > k3@(86_THE_SPAM)maine.rr.com > http://home.maine.rr.com/k3 > > "Support bacteria -- it's the only culture some people have!" > > |
|
|
|
#4 |
|
Guest
Posts: n/a
|
"K3" <k3@(86_THE_SPAM)maine.rr.com> wrote in
<news:Mnc6e.1367$%v6.511@twister.nyroc.rr.com>: > I'm trying to display the current time on a webpage > (http://home.maine.rr.com/k3/_temp/sample.htm) and I can't figure > out why it "flickers" only in Mozilla and Firefox. I suspect it's because the JavaScript is generating a warning each time through the loop that updates the clock display. The warning is: Warning: Element referenced by ID/NAME in the global scope. Use W3C standard document.getElementById() instead. Source File: http://home.maine.rr.com/k3/_temp/sample.htm Line: 77 > It works great with all other browsers. The clock does not display at all in K-Meleon. K-Meleon's JavaScript console has this to say: Error: Clock is not defined Source File: http://home.maine.rr.com/k3/_temp/sample.htm Line: 77 You would probably get better help on this in alt.html. -- »Q« |
|
|
|
#5 |
|
Guest
Posts: n/a
|
K3 wrote:
> I'm trying to display the current time on a webpage > ( http://home.maine.rr.com/k3/_temp/sample.htm ) > and I can't figure out why it "flickers" > only in Mozilla and Firefox. > > It works great with all other browsers. > Ken .... I tried your page using both Konqueror and Firefox under Debian Linux .... http://home.maine.rr.com/k3/_temp/sample.htm No noticable flicker on this end while ticking off time .... -- Stanley C. Kitching Human Being Phoenix, Arizona ----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==---- http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups ----= East and West-Coast Server Farms - Total Privacy via Encryption =---- |
|
|
|
#6 |
|
Guest
Posts: n/a
|
On Sun, 10 Apr 2005 23:55:43 +0700, Lius wrote:
> try checking for update drivers for your vga > the site works prefect on my system using IE, Maxthon and Firefox OK in Opera 8.0 B3, Konqueror and Galeon on Linux. Regards Gordon |
|
|
|
#7 |
|
Guest
Posts: n/a
|
K3 wrote:
> I'm trying to display the current time on a webpage > (http://home.maine.rr.com/k3/_temp/sample.htm) and I can't figure out > why it "flickers" only in Mozilla and Firefox. It works great with > all other browsers. > > Thanks! Funny thing is that first time I went to that page with Firefox 1.0.2 about fifteen minutes ago the clock flickered noticably. But when I tried again a minute ago it did not flicker at all. Markku Virtanen |
|
|
|
#8 |
|
Guest
Posts: n/a
|
> K3 wrote: > > > I'm trying to display the current time on a webpage > > (http://home.maine.rr.com/k3/_temp/sample.htm) and I can't figure out > > why it "flickers" only in Mozilla and Firefox. It works great with > > all other browsers. > > > > Thanks! I was having this same flickering with Firefox last fall; tried increasing the screen refresh rate to the max my monitor could handle, and that eliminated the problem. |
|
|
|
#9 |
|
Guest
Posts: n/a
|
"K3" <k3@(86_THE_SPAM)maine.rr.com> wrote in message news:Mnc6e.1367$%v6.511@twister.nyroc.rr.com... > I'm trying to display the current time on a webpage > (http://home.maine.rr.com/k3/_temp/sample.htm) and I can't figure out why > it > "flickers" only in Mozilla and Firefox. It works great with all other > browsers. > > Same here - OK in IE, flickers in FF... |
|
|
|
#10 |
|
Guest
Posts: n/a
|
K3 wrote :
> I'm trying to display the current time on a webpage > (http://home.maine.rr.com/k3/_temp/sample.htm) and I can't figure > out why it "flickers" only in Mozilla and Firefox. It works > great with all other browsers. There is a property named "innerHTML" in your JavaScript, and this property is known to be buggy on Gecko-based browsers like Mozilla or Firefox, according to this page*: http://www.developer-x.com/content/innerhtml/ This could be the reason of the flickering. Anyway, you may try to change "100" to "1000" in the following line of the script*: window.setTimeout("tick();", 100); The display of the clock will still flicker in Firefox, but only once a second (this number sets the refreshing delay in milliseconds). -- Denis Vanneste |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

