Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Javascript > Javascript Browser Sniffer

Reply
Thread Tools

Javascript Browser Sniffer

 
 
trpost@gmail.com
Guest
Posts: n/a
 
      04-11-2006
I am looking for a script using javascript to pull browser information
including, browser type and version, OS info, plugins (flash, acrobat,
media player, etc), java version, etc. that will work on IE/Firefox. I
am looking for detalis similar to what is available at:
http://www.webreference.com/tools/br...owserhawk.html

Thanks!

 
Reply With Quote
 
 
 
 
Thomas 'PointedEars' Lahn
Guest
Posts: n/a
 
      04-11-2006
wrote:

> I am looking for a script using javascript to pull browser information
> including, browser type and version, OS info, plugins (flash, acrobat,
> media player, etc), java version, etc. that will work on IE/Firefox. I
> am looking for detalis similar to what is available at:
> http://www.webreference.com/tools/br...owserhawk.html


Please read <URL:http://pointedears.de/scripts/test/whatami>, then answer
this question: Why?


PointedEars
 
Reply With Quote
 
 
 
 
Richard Cornford
Guest
Posts: n/a
 
      04-11-2006
wrote:
> I am looking for a script using javascript to pull browser
> information including, browser type and version, OS info,
> plugins (flash, acrobat, media player, etc), java version,
> etc. that will work on IE/Firefox. I am looking for detalis
> similar to what is available at:
> http://www.webreference.com/tools/br...owserhawk.html


You mean you want inaccurate information based upon false assumptions
and superficial testing? You don't need a script for that, just assume
that all browsers are IE running on Windows and have flash, acrobat and
media player installed and you won't be wrong significantly more often
than you example.

Richard.


 
Reply With Quote
 
Gérard Talbot
Guest
Posts: n/a
 
      04-12-2006
wrote :
> I am looking for a script using javascript to pull browser information
> including, browser type and version, OS info, plugins (flash, acrobat,
> media player, etc), java version, etc. that will work on IE/Firefox. I
> am looking for detalis similar to what is available at:
> http://www.webreference.com/tools/br...owserhawk.html
>
> Thanks!


I'd be very surprised if you would need so many info to begin with. In
99% of the time, a web author with an avg. or even big website only
needs to detect object feature support and/or object capability support
for his scripts. That approach is more reliable, useful and future-proof.

References:

Object detection:
http://developer.apple.com/internet/...detection.html

Browser detection (and what to do instead)
http://www.jibbering.com/faq/faq_not...er_detect.html

Comp.lang.javascript FAQ
4.26 How do I detect Opera/Netscape/IE?
http://jibbering.com/faq/#FAQ4_26


Developing Cross Browser/Cross Platform Pages
* Browser identification approach (aka "browser sniffing"): not best,
not reliable approach
* Using Object/Feature detection approach: best and overall most reliable
http://www.mozilla.org/docs/web-deve...evCrossBrowser

For detection of flash, acrobat, media player, java version, the object
feature detection support is still the correct approach.

Gérard
--
remove blah to email me
 
Reply With Quote
 
VK
Guest
Posts: n/a
 
      04-13-2006
wrote:
> I am looking for a script using javascript to pull browser information
> including, browser type and version, OS info, plugins (flash, acrobat,
> media player, etc), java version, etc. that will work on IE/Firefox. I
> am looking for detalis similar to what is available at:
> http://www.webreference.com/tools/br...owserhawk.html


Oh, BrowserHawk - that's an old buddy

A good part of sniffing is made by studying window, window.screen
(where supported) window.navigator and window.plugins (or
document.plugins ? - you better check).

You just write a script to iterate through - and be aware that some
objects/properties will not be equally presented on all UA's; so
"property/object missing" fall back is required.
<http://www.jibbering.com/faq/#FAQ3_2> will give you some materials for
comparison tables.

But it is only half way: what really gives to BrowserHawk its not so
low value is their UA strings database they support and update since
1998. Grace to it they are able to extract much more info from UA
string - unless of course it is spoofed.

That is an old lasting "tradition" to have UA's string syntax close to
inscription on the wall in the subway men's room A lot of info, but
to extract all of it one needs a sophisticated AI - or a huge database
to match the record.

My beloved one remains the mark in the old AOL packages (v.1 - v.5). In
their browser version the string ended up with "DigitallyExt". I still
think that by its hidden expressive power it stays in one row (if not
above) with the "Trespassers W" in front of Piglet's house.

I mean - is it nice to know how many AOL users do you have? Sometimes
it may be nice. But what chance to discover the string pattern without
a database?

 
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
browser sniffer Paul Watt HTML 12 07-07-2005 01:41 AM
asp page with browser sniffer doesn't work in Netscape AMC ASP General 13 01-17-2005 04:45 AM
asp based browser sniffer that detects if browser supports css AMC ASP General 12 01-13-2005 09:50 PM
Creating browser sniffer with ASP.Net =?Utf-8?B?RGF2aWQgQmFrZXI=?= ASP .Net 5 05-03-2004 09:56 PM
HTTP Sniffer extension Alain Viguier Firefox 0 09-17-2003 07:00 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