Guest User

Untitled

a guest
Oct 23rd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. (() => {
  2. const headers = document.querySelectorAll('h2');
  3. for (const el of headers) {
  4. el.id = el.textContent;
  5. }
  6. const links = Array.from(headers, el => el.textContent)
  7. .map(t => `<li><a href="#${t}">${t}</a></li>`)
  8. .join('');
  9. document.body.insertAdjacentHTML('afterbegin', `<ul>${links}</ul>`);
  10. })();
Add Comment
Please, Sign In to add comment