Skip to content

Instantly share code, notes, and snippets.

@moshfeu
Created February 11, 2015 16:27
Show Gist options
  • Save moshfeu/7a27ac4367daa9996cab to your computer and use it in GitHub Desktop.
Save moshfeu/7a27ac4367daa9996cab to your computer and use it in GitHub Desktop.
Detect stock browser and version - javascript
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