Skip to content

Instantly share code, notes, and snippets.

@catdad
Last active August 29, 2015 14:04
Show Gist options
  • Save catdad/cd88c43d916e4602ad1a to your computer and use it in GitHub Desktop.
Save catdad/cd88c43d916e4602ad1a to your computer and use it in GitHub Desktop.
Detect the browser vendor prefix.
var prefix = (function(){
var styles = window.getComputedStyle(document.documentElement, '');
var matches = [].slice.call(styles).join(' ').match(/-(moz|webkit|ms|o)-/);
return (matches) ? matches.shift() : null;
})();
// based on this post
// http://davidwalsh.name/vendor-prefix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment