8
votes
12answers
8k views
How to do browser detection with jQuery 1.3 with $.browser.msie deprecated?
How should browser detection be done now that jQuery 1.3 has deprecated (and I'm assuming removed in a future version) $.browser.msie and similar?
I have used this a lot for deter …
1
vote
1answer
35 views
Browser Detection Python / mod_python?
I want to keep some statistics about users and locations in a database. For instance, I would like to store "Mozilla","Firefox","Safari","Chrome","IE", etc... as well as the versio …
0
votes
5answers
684 views
PHP get_browser: how to identify ie7 versus ie6?
Is there any way to differentiate IE7 versus IE6 using PHP's get_browser() function?
0
votes
5answers
2k views
Detect IE8, IE7, Safari, FireFox with jQuery 1.3+?
I need to change a value based on each browser since they all render differently.
if (navigator.appName == 'Netscape'){
top = 17;
}
This was working but unfortunately both Fir …
0
votes
9answers
113 views
Feeding HTML to IE6 Only
I need to display different HTML if the browser is IE6/IE7. I know conditional comments work fine if we're just talking about styling information but in this particular case it's t …
0
votes
3answers
46 views
Change link destination based on whether user has mac or PC
Hi
Is it possible to change the destination of a link based on whether the user has a mac or a PC using javascript?
To give an example: The Apple website allows download of Quick …
0
votes
4answers
184 views
Browser detection Plugin?
Hi
I have a website that I made and I am planning to redo it. The current version of the site used a jquery callout plugin that did not fully work in IE6. This got me thinking abo …
1
vote
7answers
551 views
What is the Best way to do Browser Detection in Javascript?
In one of my Web Development classes we where asked to create a script that detects NE4,NE6+,IE4,IE6+ Browsers that display a compatable CSS script for each browser.
he gave us an …
0
votes
3answers
1k views
jQuery detect IE6 using jquery.support NOT jquery.browser
Ok,
I have found no definite way to detect IE6 using jquery.support instead of jquery.browser which is not supported anymore. Also I need to account for Quirks mode, Ugh!!!
I hav …
13
votes
16answers
1k views
What is better: CSS hacks or browser detection?
Commonly when I look around the Internet, I find that people are generally using CSS hacks to make their website look the same in all browsers. Personally, I have found this to be …
3
votes
8answers
467 views
Website language: use browser locale or IP address
Hello!
For a website we're about to implement automatic country/language selection, but still giving the user the choice to change it.
First of all, if the user enters the websit …
-2
votes
2answers
157 views
js browser detection for IE
Hello,
My question is the folowing
Is there a solid javascript code to detect if a browser is IE(I don't care about others)
I found some script, but it generates an undefined e …
0
votes
1answer
85 views
firefox browser detection in ubuntu
I just face this problem when starting to use Ubuntu.
I wonder why
Request.Browser.Browser.ToLower().IndexOf("firefox") return true for firefox on windows
but false for firefox o …
2
votes
13answers
879 views
Browser Detection
What's the best / simplest / most accurate way to detect the browser of a user?
Ease of extendability and implementation is a plus.
The less technologies used, the better.
The s …
0
votes
10answers
486 views
How to display browser specific HTML?
I'm trying to find a way to display one link to an IE user and another link to all other browsers using javascript or conditional comments (or whatever it takes).
Basically...
// …
