| Register | FAQ | Calendar | Search | Today's Posts | Mark Forums Read |
|
#1
| |||
| |||
| ----------------------------------------------------------------------- FAQ Topic - How do I detect Opera/Netscape/IE? ----------------------------------------------------------------------- The ` navigator ` object contains strings which specify the browser and version; however, this is in general not very genuine. Mozilla (and therefore Netscape 6+) allows this to be freely set, and Opera and IE allow it to be modified. There are also at least 25 other javascript capable browsers with their own strings here. Generally though, you don't need to identify which browser is being used. There are alternative techniques, but which one you choose depends on why you want to redirect browsers. If it's to offer different CSS stylesheets, then http://w3development.de/css/hide_css_from_browsers/ shows many techniques. For Scripting, _object_ detection is a better method to use. http://www.quirksmode.org/js/support.html It is also known as feature detection. Object/feature detection means checking that the object you wish to use is supported by the browser before using it. This means that you don't need to know what browsers support what methods, and your code will automatically be usable on any browser that can execute it. if (document.getElementById && document.getElementById('el') && document.getElementById('el').style ) { // We know that this browser supports getElementByID and has // a style object, so we can set a style property. document.getElementById('el').style.color="red"; } Browser bugs can often be detected and overcome in similar ways. http://developer.mozilla.org/en/docs...Platform_Pages http://www.jibbering.com/faq/faq_not...er_detect.html http://developer.apple.com/internet/...detection.html -- Postings such as this are automatically sent once a day. Their goal is to answer repeated questions, and to offer the content to the community for continuous evaluation/improvement. The complete comp.lang.javascript FAQ is at http://jibbering.com/faq/index.html. The FAQ workers are a group of volunteers. The sendings of these daily posts are proficiently hosted by http://www.pair.com. |
![]() |
| Thread Tools | |
| Display Modes | |
In an effort to better serve ads to our visitors, cookies are used on objectmix.com. For more information, check out our Privacy Policy.