Skip to content

Instantly share code, notes, and snippets.

@danbrianwhite
Created February 13, 2013 18:37
Show Gist options
  • Save danbrianwhite/4fe4f38ce1d0798e36c7 to your computer and use it in GitHub Desktop.
Save danbrianwhite/4fe4f38ce1d0798e36c7 to your computer and use it in GitHub Desktop.
setStyle
function setStyle( elem, propertyObject )
{
for (var property in propertyObject)
{
elem.style[property] = propertyObject[property];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment