Skip to content

Instantly share code, notes, and snippets.

@codeallday31
Created July 17, 2023 08:40
Show Gist options
  • Save codeallday31/b354c91a27abf657fc17636cc6bc2380 to your computer and use it in GitHub Desktop.
Save codeallday31/b354c91a27abf657fc17636cc6bc2380 to your computer and use it in GitHub Desktop.
function elementSetStyle(element, style) {
for (var name in style) {
var value = style[name];
if (value == null) value = "";
element.style[name] = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment