Skip to content

Instantly share code, notes, and snippets.

@crongro
Last active August 29, 2015 14:12
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 crongro/eac69ce28228987204b2 to your computer and use it in GitHub Desktop.
Save crongro/eac69ce28228987204b2 to your computer and use it in GitHub Desktop.
initiate variables
function setVariables(obj) {
var o = {};
for(var myKey in obj) {
o[myKey] = document.querySelector(obj[myKey]);
}
return o;
}
var _v = setVariables({
"ele" : '#ajax-error-message',
"ele2" : '.wrapper',
"ele3" : '.site-footer'
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment