Detecting the type and version of the browser the user uses to view the webpage.
0
votes
0answers
16 views
How can I determine IE version now that I updated to jQuery 1.9?
Most of the work done for my app supports the oldest IE8, so how can I detect that user has IE8 or higher?
0
votes
1answer
15 views
Detect PC and redirect code help needed
The following code detects a PC browser and it redirects.
It is a working one.
But , I want someone's help to change it to display something.
<?
$webversion = "http://www.webversion.com";
...
0
votes
0answers
23 views
Detect mobile browser with JavaScript - detectmobilebrowsers returns false for my phone?
I'm trying to determine if a mobile device is browsing my website. I thought this would be fairly simple, but it's proving a bit more complicated than expected and I wanted to double-check my ...
0
votes
1answer
39 views
Serving different css box shadows for different browsers without browser detection?
I noticed that each browsers renders box shadow blur radius slightly different so I want to even that out. However, as they use the unprefixed version I need to serve different stylesheets for ...
1
vote
1answer
21 views
IE Detection evaluating true for Chrome / FF?
This should be straight forward but I'm having issues with this. I'm working on a site in an html5 boilerplate setup. Everything's good but IE(10) is having the usual margin issues. It's not ...
-1
votes
2answers
58 views
Javascript to detect safari and chrome on mac
Does anyone have any javascript code to detect Safari and Chrome running on Mac OS so I can apply css for each browser?
-1
votes
0answers
21 views
Detect IE9 as IE7 or older [duplicate]
I develop an internet site.
I want my site will be supported also by IE8 + IE9.
I realized that on my code, there are several lines, but even I have IE9, it is detected as IE7 or even lower version, ...
0
votes
0answers
21 views
How to access the conditionizr object?
I need to know if a user is using a mobile touch device in my JavaScript code to not register any hover eventHandlers. Since I don't want to use userAgent sniffing like:
isMobile = function() {
...
2
votes
1answer
65 views
what is the best way to add mobile (or tablet…) detection within zf2?
Is there a recommended way to perform a mobile or browser check/detection with zf2?
I am surprised there seems to be no module developed to handle this...
0
votes
0answers
26 views
Alternative to Browscap
I've been using Browscap in one of my opensource projects (a URL shortener if anyone's interested) for quite a while now and after updating it to the latest version I realized that it hasn't changed ...
0
votes
1answer
28 views
Displaying relevant content
I want to display the correct script and hide the false script of this code depending on what device the end user is using.
<ul class="pageitem">
<li class="button iphone"><input ...
0
votes
6answers
81 views
How to detect the version of IE
I've using the below function to detect my IE version:
function isIE()
{
var myNav = navigator.userAgent.toLowerCase();
return (myNav.indexOf('msie') != -1) ? ...
2
votes
1answer
53 views
“Feature detection” let me down. A case for browser detection or is there a better way?
I have read many posts here and on other sites regarding browser-detection vs. feature-detection, and I understand all of the pros of feature-detection. However, I have hit an issue in which browser ...
0
votes
0answers
24 views
Broken User-agent detection code…why? How now?
I used to use the following code (see below) to detect user agents in the index file and then send the user to the correct directory folder based on their device/browser. This script code doesn't seem ...
0
votes
1answer
42 views
Browser detection widget with browser suggestions
I'm looking for a widget which displays the list of recommended browsers if the current browser does not match the criteria. I saw it several months ago, it displayed browser icons, and was very cool, ...
1
vote
1answer
71 views
How do webservers reliably determine the device that is sending requests?
I've recently noticed that some websites that I visit are capable of detecting the device that I am using to view the website but I'm not sure how they are able to do that.
For example, www.rdio.com, ...
0
votes
1answer
68 views
Hide div for Safari browser in wordpress and display another div on page load instead
I have 2 galleries, one is a deepzoom composite from microsoft and the other a wordpress short code calling the gallery from the database. Each gallery is in its own div. I need to have the safari ...
1
vote
0answers
45 views
Different landing page and navigation for mobile
Hi there! I've been trying to redesign a mobile site, I want to have a different landing page and navigation design which can be toggled apart from the responsive design I have now.
I've tried to ...
0
votes
0answers
250 views
How to detect android default browser javascript
Samsung Gallaxy S2 (Android OS, v2.3.4 (Gingerbread)) comes with default browser, I faced some CSS realted issued, it has to especially specify the values. I use the JS lib called ...
1
vote
1answer
40 views
How do I provide content for a general browser? (using the Useragent)
So I have some videos that I post to my blog - Be aware, it's kid pictures, and will probably put in in a child induced coma quickly.
I would like to display the HTTP Live streaming version of the ...
0
votes
1answer
69 views
Username and Password in address bar
Once I login to my website (a chat room), the URL contains uid=myusername&pass=mypass and it stays there indefinitely, and never goes, even while chatting..
Can a guest sniff what is in my ...
0
votes
4answers
2k views
Identify IE9/IE10 using jQuery
I have a jQuery code which is working fine for Chrome/Mozilla but not IE.
if ($("html").hasClass("ie")) {
$(function(){
$('.green-column, .red-column, .grey-column').click(function() {
...
0
votes
2answers
86 views
Condition based on if mobile or otherwise unknown browser
I have a form that shrinks responsively based on the window size. However, we need it to permanently stay small on mobile and otherwise unknown browsers.
This is the psuedocode. jQuery is fine, too, ...
0
votes
2answers
560 views
php to detect browser
Ive got an odd css fault that i cant seem to fix, its only occuring in safari, not chrome so webkit targeting wont help.. what i was trying to do is set a block of php to check if the browsers safari, ...
0
votes
1answer
66 views
Safe feature-based browser detection
I have been doing a bit of research on safe and reliable browser detection. Given the fact that parsing navigator.userAgent is the worst way to do so, since it can be easily spoofed by a user, th best ...
0
votes
2answers
159 views
JavaScript browser detection?
I need to add a certain kind of support for touch devices on a current project. As this is the first time I have to do something like this, I took a look at the code of some "well made" websites to ...
-2
votes
1answer
406 views
how to run jQuery code only in IE8
I am tasked to put jQuery into a webapp, needful of functionality specific to the Internet Explorer 8 browser (7 is not needed). How to do this?
In jQuery 1.8 could do:
if ($.browser.msie && ...
3
votes
1answer
58 views
Detecting whether browser is fast enough for site
Feature detection is generally preferred over browser sniffing. What should I do in a case where certain browsers "support" the features I'm using but have javascript runtimes that are too slow?
I'm ...
1
vote
3answers
1k views
Detect phone/tablet/web client using javascript
I am trying to detect if the end user is on a phone, a tablet or a pc
I have been Googling for a while, apparently there are no easy solution.
Well I guess I should not use Resolution, since ...
2
votes
3answers
87 views
is it ok to use server-side browser detection to ensure graceful degradation of html5 sematic tags in IE7 and IE8
It is a well known fact that html5 semantic tags won't degrade gracefully in IE lesser than version 9 without some help in form of conditional javascript snippet. It means that users with IE7 and ...
-3
votes
2answers
63 views
Detect Fullscreen key combination for various environment - JS [closed]
I need to show Fullscreen key combination for various environment in a message to User on my website.
That needs to be detected based on environment. For eg Safari+windows = "F11" and Safari+mac = ...
1
vote
1answer
29 views
Is it possible to feature test for dataTransfer.files support?
Modernizr provides a way to detect if browser has support for drag and drop, but it fails to adequately tell if browser supports drag and drop for files. Is it possible to feature test this? Or it's ...
1
vote
2answers
76 views
Javascript conditional browser detection interferes with other functions [closed]
For some reason, this portion of javascript is blocking out all the other functions I have written previously. They work if I take it out, and stop working when I put it back in.
If someone can spot ...
1
vote
0answers
79 views
Browser History handling different between browsers / JavaScript browser feature detection
I see there is a different handling of history browsing in Chrome and Safari compared to Firefox and IE. When I try to go to a page that protected by an Access Manager, it gets redirected to the ...
2
votes
1answer
306 views
jQuery.support that will pass IE10+ but not IE9-?
Are there any jQuery.support options that will return true on IE10 as well as Firefox and Webkit browsers, but return false on IE9 and lower?
The jquery page for this option seems woefully out of ...
0
votes
0answers
77 views
HTML5 Video Control and Browser Detection with Javascript
Im trying to modify the script that allows me to navigate through my video based on either Chrome or Firefox.
I've noticed that using the offsetX function works well in Chrome but not at all in ...
1
vote
3answers
149 views
Device browser detection
I have built a parallax intro for a clients site - due to the limited budget the animation will only work on higher end browsers, IOS and ie9.
Therefore I need to create a detection script in the ...
13
votes
3answers
318 views
Blocking modern IE?
Blocking IE is definitely not best practice, but it's something in my requirements for an existing application. What's the most effective way to do that since conditional comments aren't available in ...
1
vote
1answer
134 views
input field placeholder attribute ie7+
I am currently using the following library:
http://widgetulous.com/placeholderjs/
And using the following code to detect necessity of use/and to apply it to the fields requiring it:
if ...
10
votes
3answers
13k views
jQuery 1.9 browser detection
In earlier versions, I used to test if I should be triggering popstate manually on page load, because Chrome triggers it right after load, and Firefox and IE do not.
if ($.browser.mozilla || ...
1
vote
2answers
911 views
Reliable Way to Detect Desktop vs. Mobile Browser [duplicate]
Possible Duplicate:
What is the Best way to do Browser Detection in Javascript?
I'd like to essentially do the following (in JavaScript or PHP):
if (desktop browser) {
do x;
}
else { ...
0
votes
0answers
74 views
How to deduct desktop or not
I do have a html5 video page, the scenario is in case if the user using smartphone, tablets the url which we have should work by default. apart from if it not a handhold and if it is a desktop or ...
1
vote
2answers
81 views
Reverse Bootstrap Modal Options if on a Mac
So I am using twitter bootstrap for one of my latest projects... My client uses a Mac computer and when I showed him the demo, he said it would be cool if the buttons could flow with the operating ...
2
votes
4answers
2k views
What's a quick, pure javascript replacement for jquery.browser (removed in jquery 1.9)?
Yeah, I know that feature detection is preferable.
I've got a case in my codebase where we are using $.browser.msie and $.browser.version to decide whether to render some CSS or not. The developer ...
24
votes
8answers
13k views
Easiest/Lightest Replacement For Browser Detection jQuery 1.9?
I had several clients complain yesterday that some code stopped working. Apparently it comes down to plug-ins using the now deprecated jQuery.browser which stopped working yesterday when jQuery 1.9 ...
1
vote
2answers
122 views
Browser detection using javascript failing on refresh
I'm trying to detect for devices that do not have support for position:fixed. EDIT: I've fixed the code so it's detecting features rather than browser/OS detection.
I think I was confusing people ...
0
votes
1answer
51 views
Set correct css transform based on browser
I'm trying to add the correct css "transform" based on browser here is what I have tried but its not working:
if ($.browser.msie) {
var BroTrans = 'transform';
} else
if ($.browser.webkit) {
...
0
votes
3answers
372 views
Detecting Android Browser (from v. 1 to 2.3 firmware) in PHP
I need to detect if the browser is Android (only from 1 to version 2.3), would this work?
if(preg_match('/Android [1-2.3]/', $_SERVER['HTTP_USER_AGENT'])) {
echo 'something';
}
2
votes
3answers
173 views
How to find page width in Opera 12 (for Desktop Windows)?
I want to access full page width & height in Opera. Note I am not asking about Viewport's height or width, I want page's/document's width & height. I am using Opera 12.12
I have tried the ...
-2
votes
1answer
188 views
Mobile Detect: “Warning: cannot modify header information” [duplicate]
Possible Duplicate:
Headers already sent by PHP
I have inherited a website that has a mobile detect php script running that should redirect the user to a subdomain if the user is accessing ...

