Created
February 11, 2015 16:27
-
-
Save moshfeu/7a27ac4367daa9996cab to your computer and use it in GitHub Desktop.
Detect stock browser and version - javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var iSstock = ((navigator.userAgent.indexOf('Mozilla/5.0') > -1 && navigator.userAgent.indexOf('Android ') > -1 && navigator.userAgent.indexOf('AppleWebKit') > -1) && !(navigator.userAgent.indexOf('Chrome') > -1)); | |
var version = parseFloat(/Android (.*?);/.exec(navigator.userAgent)[1]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment