Skip to content

Instantly share code, notes, and snippets.

@elijahmanor
Created August 5, 2012 00:38
Show Gist options
  • Save elijahmanor/3260856 to your computer and use it in GitHub Desktop.
Save elijahmanor/3260856 to your computer and use it in GitHub Desktop.
CSS Property to DOM Style Property
function cssPropertyToDomStyleProperty( name ) {
return name.replace( /-(\w)/g, function(match, group) {
return group.toUpperCase();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment