Skip to content

Instantly share code, notes, and snippets.

@danemacaulay
Created September 12, 2013 16:07
Show Gist options
  • Save danemacaulay/6540055 to your computer and use it in GitHub Desktop.
Save danemacaulay/6540055 to your computer and use it in GitHub Desktop.
function cssPrefix(property, value){
var vendors = ['', '-o-','-moz-','-ms-','-khtml-','-webkit-'];
var styles = {};
for (var i = vendors.length - 1; i >= 0; i--) {
styles[vendors[i] + property] = value;
}
return styles;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment