Skip to content

Instantly share code, notes, and snippets.

@ppscvalentin
Created December 12, 2017 08:54
Show Gist options
  • Save ppscvalentin/ffb70fe2fc396721642c30e2b5140b8f to your computer and use it in GitHub Desktop.
Save ppscvalentin/ffb70fe2fc396721642c30e2b5140b8f to your computer and use it in GitHub Desktop.
attributes.js
// https://davidwalsh.name/javascript-attributes
Array.prototype.slice.call(document.getElementById("myId").attributes).forEach(function(item) {
console.log(item.name + ': '+ item.value);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment