Skip to content

Instantly share code, notes, and snippets.

@argyleink
Created October 13, 2016 06:54
Show Gist options
  • Save argyleink/9ca48950a018d878f8591d9977dd4d06 to your computer and use it in GitHub Desktop.
Save argyleink/9ca48950a018d878f8591d9977dd4d06 to your computer and use it in GitHub Desktop.
const el = function(options) {
let node = document.createElement(options.type || 'div')
if (options.id) node.id = options.id
if (options.class) node.className = options.class
if (options.text) node.textContent = options.text
if (options.html) node.innerHTML = options.html
return node
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment