Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theprincy/c8d9bb1974477784e62822555203dab1 to your computer and use it in GitHub Desktop.
Save theprincy/c8d9bb1974477784e62822555203dab1 to your computer and use it in GitHub Desktop.
//função
function setAttributes(el, attrs) {
for (var key in attrs) {
el.setAttribute(key, attrs[key]);
}
}
//chamada da função
setAttributes(inputFile, { "id": idName, "class": "scFormObjectOdd", "type": "text", "value": idName });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment