Skip to content

Instantly share code, notes, and snippets.

@getify
Created April 25, 2011 14:41
Show Gist options
  • Save getify/940603 to your computer and use it in GitHub Desktop.
Save getify/940603 to your computer and use it in GitHub Desktop.
`window.vendor`
(function(){
if (window.vendor) return;
var _browsers = ["chrome","opera","safari","firefox","ie"];
for (var i=0; i<_browsers.length; i++) {
if (_browsers[i] in window) {
window.vendor = window[_browsers[i]];
break;
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment