Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Javascript > browsers that reload on resize?

Reply
Thread Tools

browsers that reload on resize?

 
 
Paul
Guest
Posts: n/a
 
      05-18-2004
I have some old code that i'm revamping. In it i have code to put a unique
number in the querystring so the server knows whether its a page request or
a netscape (v 4 at the time) resize.

Now nobody uses Netscape anymore, right? So do i still need to cater for
this feature (bug?!). I can install and test all the browsers i can think
of but if anyone can say a definite answer it will be a great help.

Thanks

Paul


 
Reply With Quote
 
 
 
 
Randy Webb
Guest
Posts: n/a
 
      05-18-2004
Paul wrote:

> I have some old code that i'm revamping. In it i have code to put a unique
> number in the querystring so the server knows whether its a page request or
> a netscape (v 4 at the time) resize.


So far so good.

> Now nobody uses Netscape anymore, right? So do i still need to cater for
> this feature (bug?!). I can install and test all the browsers i can think
> of but if anyone can say a definite answer it will be a great help.


If anyone can give a "definitive answer" for web browser usage, then
they will have more knowledge than the combined efforts of most people
on the web.

Check your logs to see.


--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/
 
Reply With Quote
 
 
 
 
Paul
Guest
Posts: n/a
 
      05-18-2004
Randy Webb wrote:
> Paul wrote:
>
>> I have some old code that i'm revamping. In it i have code to put a
>> unique number in the querystring so the server knows whether its a
>> page request or a netscape (v 4 at the time) resize.

>
> So far so good.
>
>> Now nobody uses Netscape anymore, right? So do i still need to
>> cater for this feature (bug?!). I can install and test all the
>> browsers i can think of but if anyone can say a definite answer it
>> will be a great help.

>
> If anyone can give a "definitive answer" for web browser usage, then
> they will have more knowledge than the combined efforts of most people
> on the web.
>
> Check your logs to see.



Obviously if i want to cater for people on old Netscape i'd still have to
keep this code.

But yes, Ok my choice of words could be better.... what i'm asking is:

Does anyone know of a commonly used Browser, lets say V5 or higher, that
suffers from the same resize/reload issue that affected Netscape 4.7?

Paul



 
Reply With Quote
 
Markus Ernst
Guest
Posts: n/a
 
      05-18-2004
"Paul" <> schrieb im Newsbeitrag
news:...
> I have some old code that i'm revamping. In it i have code to put a

unique
> number in the querystring so the server knows whether its a page request

or
> a netscape (v 4 at the time) resize.
>
> Now nobody uses Netscape anymore, right? So do i still need to cater for
> this feature (bug?!). I can install and test all the browsers i can think
> of but if anyone can say a definite answer it will be a great help.


Some people still use it. Anyway AFAIK the reloading of NS4 on resize is
triggered by a javascript that is inserted by editors because that browser
forgets about CSS when the window is resized; so the page is reloaded to get
the CSS again. You could just remove that script (usually called something
like Netscape Resize Fix). So you can choose what you prefer on resize:
reloading or loss of your design.

HTH
Markus


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
problem in running a basic code in python 3.3.0 that includes HTML file Satabdi Mukherjee Python 1 04-04-2013 07:48 PM
using refresh to reload page, problem is it loads header, footer andeverything, can I avoind those to reload? VT HTML 8 10-13-2010 11:09 PM
JavaScript refresh: <a href="#" onClick="window.location.reload( true );">Reload</a> Joshua Beall HTML 26 06-29-2007 06:31 PM
problem with reload(sys) (doing reload on the sys module) gen_tricomi Python 2 05-23-2006 10:03 AM
Is there an SNMP equivalent to "Reload in [x]" / "Reload cancel" commands? steve.chambers@gmail.com Cisco 5 05-20-2006 04:06 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57