Tagged Questions
The browser-detection tag has no wiki summary.
30
votes
15answers
3k 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 quite time consuming ...
24
votes
10answers
24k views
best way to detect handheld device in jQuery
Is there a solid way to detect whether or not a user is using a mobile/handheld device in jQuery? Something similar to the css media attribute? I would like to run a different script if the browser is ...
22
votes
15answers
44k 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 determining which browser ...
16
votes
7answers
9k views
How do you detect support for VML or SVG in a browser
I'm writing a bit of javascript and need to choose between SVG or VML (or both, or something else, it's a weird world).
Whilst I know that for now that only IE supports VML, I'd much rather detect ...
15
votes
1answer
7k views
Detect iPad users using jQuery?
Is there a way to detect if the current user is using an iPad using jQuery/JavaScript?
Thanks everyone!
13
votes
4answers
241 views
How can I target text-based browsers?
I'd like to include mark-up that makes it easier for users of text-based browsers (links, elinks, lynx) to consume my site. I'll be able to serve this special version of the site based on useragent, ...
11
votes
2answers
192 views
How do I programmatically detect how a browser handles window.close()?
Different web browsers handle the window.close() function differently. IE prompts the user for confirmation, while Firefox and Safari just fail to honor it unless the window was originally opened with ...
11
votes
6answers
6k views
Mobile Device Browser File vs. WURFL for ASP.NET
I am working on a commercial web application that has a separate mobile browser version intended for the more capable devices (BlackBerry, iPhone, Android, etc). I don't want to do simple User Agent ...
11
votes
10answers
14k views
Mobile detection using Javascript
Is there a way to detect mobile devices using Javascript? Also, I researched that there are such an XML which contains user-agents that could help to identify the mobile handsets.
Many thanks.
-V2
11
votes
7answers
5k views
What is the correct way to detect Opera using jQuery?
Amazon.com recently updated their javascript, and it's causing problems with some Opera browsers.
Their browser detection code looks like so, but it's faulty:
function ...
9
votes
3answers
3k views
Rails Browser Detection Methods
Hey Everyone, I was wondering what methods are standard within the industry to do browser detection in Rails? Is there a gem, library or sample code somewhere that can help determine the browser and ...
9
votes
4answers
5k views
Distinguish Chrome from Safari using jQuery.browser
It seems jQuery.browser is able to identify webkit rather easily as of 1.4. But how can I use it to distinguish Chrome from Safari (and visa-versa)?
9
votes
5answers
16k views
Browser & version in prototype library?
I am used to using Atlas. Recently i have started transitioning to jQuery and sometimes prototype. The project that i'm currently working on is using prototype.
In Prototype, is there an easy way to ...
8
votes
3answers
199 views
Prevent IE6 visitors
How can I drop the using of IE6 to browse my website ?
Something like :
if ie6 => die
I am using ASP.Net Thanks
8
votes
13answers
3k 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 solution can be ...
7
votes
1answer
718 views
Javascript - detect if event lister is supported
Is it possible to detect if certain events are supported in certain browsers?
I can detect if the browser supports document.addEventListener, but I need to know if it supports the event ...
7
votes
2answers
458 views
Browser detection in Javascript — ERROR?
This is the detector: http://w3schools.com/js/tryit.asp?filename=try_nav_all
In Chrome, Firefox, Safari and Netscape it always shows the browser codename as Mozilla, and the browser name as Netscape. ...
6
votes
2answers
390 views
How do I detect availability of tel: uri scheme in a web app?
I'm looking to use the tel: uri scheme (rfc3966) to make phone numbers linkable on mobile devices in a web application, but I'd prefer to not link them on devices that can't handle the tel: scheme - ...
6
votes
1answer
1k views
Google Chrome inset box-shadow bug on Windows, not on Mac: Better workaround?
This is still current on Chrome 5.0.375.125, which is the latest Windows release at the time of this writing.
Bug is tracked here:
http://code.google.com/p/chromium/issues/detail?id=25334
So, the ...
6
votes
5answers
2k views
Detect Browser Support for display:inline-block
How can you detect if a browser supports the CSS attribute display:inline-block?
5
votes
1answer
5k views
How to find out about the User Agent in GWT
I am trying to write browser specific code. Is there a GWT API to find out which browser the client is using?
5
votes
7answers
2k views
Browser language: autodetect vs user select?
I am designing a localized web app. I am leaning on auto-detect browser language setting. But I notice a number of respectable sites asking the user to select a language. Is there any usability issue ...
4
votes
1answer
441 views
Is it possible to detect Firefox users in pure CSS?
Is it possible to detect Firefox Browser only with CSS like IE?
for example, IE browser can be detected like:
<!--[if IE 7]>
/* IMPORTING CSS FOR IE */
<![endif]-->
Can be Firefox ...
4
votes
8answers
2k views
Best way to check for IE less than 9 in JavaScript without library
What would be your fastest, shortest (best) way to detect browser which is IE and version less than 9 in JavaScript, without using jQuery or any add-on libraries?
4
votes
2answers
81 views
Different javascript files for different browsers
I would like to have two separated Javascript files. One for IE and another one for all other browsers. How would I do that?
<!--[if IE]>
<script type="text/javascript" ...
4
votes
5answers
886 views
The best browser detection solution in ASP.NET 4.0
I googled this topic and I came across with three different ways to configure browser capabilities: browscap.ini, browserCaps element in web.config and .browser files in App_Browsers. I thought ...
4
votes
2answers
248 views
Sending an email with browser capabilities and screen size etc
A lot of my visitors are blind (with it being a site for the blind), and often when trying to diagnose problems, I'd like to know what version of browser etc they're using, whether flash is installed. ...
4
votes
7answers
2k views
Browser detection in javascript?
How do I determine the exact browser and version using javascript?
Thanks
4
votes
8answers
2k views
Website language: use browser locale or IP address
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 website using a domain with a ...
4
votes
4answers
7k views
Anti-aliased font in HTML page
Is there a good way to create crisp, clear, LARGE font in webpages? I need to create a tag cloud effect on my homepage with different font sizes and colours.
I've got it set up in HTML/CSS but on the ...
3
votes
1answer
182 views
Why am I getting these strange results when looking at browser capabilities?
I am currently looking into browser capabilities and am trying to test the browser definition files that come with .NET 4.0. To do this I am using an add-on for Firefox to change the user agent and I ...
3
votes
2answers
102 views
Detect CSS3 with JQuery
Is there a way to detect whether a browser supports CSS3 transitions (-webkit-, -moz-, etc..) with JQuery?
3
votes
1answer
66 views
Check if html element is supported
How to check if html element is supported, datalist for example? MDC says it is supoorted only in Opera and FireFox.
3
votes
1answer
253 views
How to detect browser support for pageShow and pageHide?
How can we do JavaScript object detection for pageShow and pageHide handlers?
if( /* pagehide is supported */ ){
window.addEventListener('pagehide', exitFunction, false);
}
else{
...
3
votes
2answers
73 views
php/jquery - web development: mobile devices
i'm having a finished website and need to optimize it for mobile devices (ipad/iphone/smartphones ..).
what's the best way to detect which mobile device/browser is used? (eg. by jquery-plugin)
thanks
...
3
votes
7answers
7k views
How to write specific CSS for mozilla, chrome and IE
What would be the CSS conditional statement you can use to include specific CSS for IE, Mozilla, Chrome.
If IE
#container { top: 5px; }
If Mozilla
#container { top: 7px; }
If Chrome
...
3
votes
3answers
3k views
Detect Browser Language in PHP
I have this script as INDEX for my website.
Script should be include on itself a specific page depending on browser language (automatically detected).
This script was working till now, and now ...
3
votes
1answer
957 views
How to detect “Google Chrome” as the user-agent using PHP?
I'm interested to know whether the user-agent is "Chrome" at the server end using PHP. Is there a reliable regular expression for parsing out the user-agent string from the request header?
3
votes
3answers
1k views
Request.Browser.Platform not returning iPad, OSX, or Windows7
I'm working on some advanced browser detection, and I've downloaded the MDBF browser file from CodePlex.
Unfortunately my Request.Browser.Platform, along with a few other things is returning ...
3
votes
1answer
121 views
Why wouldn't the default Control Adapter mappings work on Chrome or Safari?
I have confirmed that my Control Adapters are not triggering in Chrome and Safari. I've debugged, and the breakpoints inside the adapters just don't get hit in Chrome/Safari, when they work perfectly ...
3
votes
1answer
2k views
Mobile detection - Meta tag and max-device-width vs. php user agent?
Which form of mobile detection should I use and why?
<meta name="viewport" content="width=320,initial-scale=1,maximum-scale=1.0,user-scalable=no" />
<link media="only screen and ...
2
votes
2answers
48 views
Javascript: Load different stylesheet for IE9
So I was looking to write a function that would test if user is using IE / IE9 and conditionally load a separate stylesheet if true. Have read through a ton of documentation but there doesn't seem to ...
2
votes
2answers
108 views
Zepto fallback to jQuery
I'm using ZeptoJS for my web app, but I'd like to fall back to jQuery if the browser doesn't support Zepto. Since IE is the only major browser not supported at the moment, I'm tempted to detect IE:
...
2
votes
4answers
117 views
Detect browser - show different links
I am detecting what kind of mobile browser a user has and would like to show the appropriate download link to the right App based on that. So Android to the Android App, Iphone to the Iphone App, ...
2
votes
2answers
184 views
IE9 Browser Detection Showing IE8
For debugging purposes, my web application shows the user's browser, version and operating system on the bottom of every page - this is done in Javascript.
In development and testing using IE9, the ...
2
votes
2answers
56 views
Browser-sniffing alternative for bugs/misbehaviors (NOT lack of features)
Ok we all know that browser sniffing is bad. I'm not looking to rehash the entire debate here, and SO isn't the right forum for that anyway. I'm looking for a solution to a problem that the proposed ...
2
votes
2answers
270 views
Detect Lion (OS X 10.7) in javascript?
Is there a way to detect if the operating system is OS X Lion or not in Javascript?
Cheers!
2
votes
4answers
150 views
the best way to detect browser in js
There are lots of ways for browser detecting in JavaScript.
As far as i know, using navigator.userAgent or detecting features (like XMLHttpRequest) and so on.
Can anybody tell me which way is the ...
2
votes
1answer
74 views
mobile browser device detection in .NET
Sorry if this has been beaten to death. I've bee Googling but haven't found an answer that satisfies.
I'm just starting to create my first mobile version of a desktop website that was written in ...
2
votes
1answer
158 views
Does a database of user-agent to browser brand mappings exist?
In my application I would like to save user's last used browser to avoid spending lot of time on the phone with users trying to find out whether they are using an IE7 or and IE8. Storing user agent ...