473,509 Members | 2,950 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Browser Check

Is this a very good browser check?

<html>
<head>
<title>wB.htm</title>
<script type="text/javascript">
var adBtype = "??";
function wB() {
if (document.getElementById && !document.all) {
adBtype = "NS6+";
} else if (document.getElementById && document.all) {
adBtype = "IE5+";
} else if (document.all) {
adBtype = "IE4";
} else if (document.layers) {
adBtype = "NS4";
}
alert(adBtype);
}
</script>
</head>
<body onload="wB()">
<body>
</html>

Opera 6.01 returns "IE5+"; don't know about others...
Jul 20 '05 #1
6 2423
"McKirahan" <Ne**@McKirahan.com> wrote in message
news:Jm9%b.56686$Xp.269424@attbi_s54...
Is this a very good browser check?


<script cut>

See: http://jibbering.com/faq/#FAQ4_26
--
Andrew Urquhart
- FAQ: http://jibbering.com/faq
- Archive: http://groups.google.com/groups?grou...ang.javascript
- Reply: http://www.andrewu.co.uk/about/conta...=newsgroup_clj
Jul 20 '05 #2
"McKirahan" <Ne**@McKirahan.com> writes:
Is this a very good browser check?
No. I can say that without reading, because browser checks are almost
invariably not good, no matter how efficient they are :).

(Remember DOCTYPE, it is required by HTML)
var adBtype = "??";
function wB() {
if (document.getElementById && !document.all) {
adBtype = "NS6+";
Or Opera 6 or ....
} else if (document.getElementById && document.all) {
adBtype = "IE5+";
Or Opera 6 (in IE mode) or Opera 7 or ...
} else if (document.all) {
adBtype = "IE4";
Or WebTV or ....
} else if (document.layers) {
adBtype = "NS4";
Or OmniWeb or ...
Opera 6.01 returns "IE5+"; don't know about others...


Not knowing about others is *the* problem with browser detection.
Optimistically it is hard work to become familiar with all browsers,
realistically, it is quite impossible. You will invariably miss some
browsers that are in actual use, and will most likely badly
misrepresent future browsers.

The way to make scripts usefull across as many browsers as possible
are:
1) Use standards! It gives you the best chance of forward compatability.
2) Use object/feature detection, not browser detection, to make fallbacks
for non-standard-compliant browsers.

Object detection coulde be:

var elem;
if (document.getElementById) {
elem = document.getElementById(id);
} else if (document.all) {
elem = document.all[id];
} else if (document.layers) {
elem = document.layers[id];
} else {
elem = null;
}

Before using a standard feature that some browsers are known to be
incompatible with, you test for its existence. If it doesn't exist,
you test for the existence of some other feature that might (or might
not) be used instead. Notice that the above code doesn't care whether
it is IE 5+ or NS 6+ or whatever. It is not perfect code! There are
cases where it fails too, which further testing could fix. And some
that it can't (some browsers are just broken, or doesn't have
Javascript enabled).

It is important to realize that old browsers that nobody uses will not
become more used in the future, but future browsers will. That makes
forward compatability more important than backwards compatability.
Detecting specific versions of known browsers will necessarily not
work for future versions.
/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 20 '05 #3
McKirahan wrote:

<script type="text/javascript">
var adBtype = "??";
function wB() {
if (document.getElementById && !document.all) {
adBtype = "NS6+";
} else if (document.getElementById && document.all) {
adBtype = "IE5+";
} else if (document.all) {
adBtype = "IE4";
} else if (document.layers) {
adBtype = "NS4";
}
alert(adBtype);
}
</script>


There's no escape for the function:
function wB() {
if (document.getElementById && !document.all) {
adBtype = "NS6+";return;
}
if (document.getElementById && document.all) {
adBtype = "IE5+";return;
}
if (document.all) {
adBtype = "IE4";return;
}
if (document.layers) {
adBtype = "NS4";return;
}
adBtype= "unknown to this programmer";
}
Mick
Jul 20 '05 #4
"Mick White" <mw******@BOGUSrochester.rr.com> wrote in message
news:0F*******************@twister.nyroc.rr.com...
McKirahan wrote:

<script type="text/javascript">
var adBtype = "??";
function wB() {
if (document.getElementById && !document.all) {
adBtype = "NS6+";
} else if (document.getElementById && document.all) {
adBtype = "IE5+";
} else if (document.all) {
adBtype = "IE4";
} else if (document.layers) {
adBtype = "NS4";
}
alert(adBtype);
}
</script>


There's no escape for the function:
function wB() {
if (document.getElementById && !document.all) {
adBtype = "NS6+";return;
}
if (document.getElementById && document.all) {
adBtype = "IE5+";return;
}
if (document.all) {
adBtype = "IE4";return;
}
if (document.layers) {
adBtype = "NS4";return;
}
adBtype= "unknown to this programmer";
}
Mick


Actually I modified one I found; it actually was:

function wB() {
if (document.getElementById && !document.all) {
adBtype = "NS6+";
return;
} else if (document.getElementById && document.all) {
adBtype = "IE5+";
return;
} else if (document.all) {
adBtype = "IE4";
return;
} else if (document.layers) {
adBtype = "NS4";
return;
}
}
Jul 20 '05 #5
In article <Jm9%b.56686$Xp.269424@attbi_s54>, Ne**@McKirahan.com
enlightened us with...
Is this a very good browser check?


No, but it's a great way of doing object detection. :)

There is NO good browser check. There are simply too many browsers.

--
--
~kaeli~
I do whatever my Rice Krispies tell me to.
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 20 '05 #6
McKirahan wrote:


Actually I modified one I found; it actually was:

function wB() {
if (document.getElementById && !document.all) {
adBtype = "NS6+";
return;
} else if (document.getElementById && document.all) {
adBtype = "IE5+";
return;
} else if (document.all) {
adBtype = "IE4";
return;
} else if (document.layers) {
adBtype = "NS4";
return;
}
}


What if all the Booleans are false? You need to declare a global variable:
var adBtype="Unknown" // A suggestion.
But read the other comments, there are probably hundreds of different
browsers out there, some of which obfuscate their headers. IOW your
"adBtype" is just a guess.
Mick
Jul 20 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
2444
by: Dr. StrangeDub | last post by:
I am part of a group that has developed an ASP.Net web application. I am looking for a way to determine whether or not the browser is actually running on the web server. For this case (when...
11
2155
by: James | last post by:
I wasn't sure where to post this so I'm sorry if this is the wrong place. But I would like to know what some of the differences are between client-side and server-side browser sniffing. I'm aware...
12
10126
by: Kepler | last post by:
How do you get the height of the client browser in IE? Both document.body.clientHeight and document.body.offsetHeight return the height of the document. If the page is long and there's a vertical...
5
3157
by: David Baker | last post by:
Hi all I am very new to ASP.Net. I am trying to create a sniffer for our program. We want our users to click our sniffer and hopefully the sniffer will check their computer against our...
2
8065
by: Craig G | last post by:
is there a way to distinguish whether a client is using IE or Netscape? is there some sorta check i can run on the Page_Load event? or where would be the best place to do this? Cheers, Craig
4
2695
by: Paul W | last post by:
Hi - can someone point me to info on the issues/resolutions of supporting the safari browser? To help me understand, if I was developing pages in say FrontPage, what attributes would I set for...
22
2263
by: petermichaux | last post by:
Hi, I would like to display a message to Internet Explorer clients to encorage them to get Firefox. Yes they may like Internet Explorer but it is my site :) http://www.explorerdestroyer.com/...
6
2383
by: =?Utf-8?B?YzY3NjIyOA==?= | last post by:
Hi all, I am thinking about doing this since I got several cases that some of our internal users open more than one browser at the same time from our server. When one of the transactions was not...
3
7772
by: =?Utf-8?B?Qkw=?= | last post by:
if (Request.Browser.Cookies) { // Cookies supported } else { // Web browser not supports cookies }
10
3233
by: Conrad Lender | last post by:
In a recent thread in this group, I said that in some cases object detection and feature tests weren't sufficient in the development of cross-browser applications, and that there were situations...
0
7136
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7344
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7412
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
5652
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4730
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3216
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3203
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1570
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
441
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.