Skip to content

Instantly share code, notes, and snippets.

@confraria
Created April 17, 2020 21:00
Show Gist options
  • Save confraria/7e0d44c77570a4b2d0270fd9dfbbb55c to your computer and use it in GitHub Desktop.
Save confraria/7e0d44c77570a4b2d0270fd9dfbbb55c to your computer and use it in GitHub Desktop.
villares
Array.from(document.querySelectorAll('[id]')).forEach(e => {
const a = document.createElement('a');
a.href=`#${e.id}`;
e.parentNode.replaceChild(a, e);
a.appendChild(e);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment