Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const area = Array.prototype.slice.call(document.querySelectorAll('area'));
  2.  
  3. area.forEach(el => {
  4. el.onclick = e => {
  5. e.preventDefault();
  6. document.querySelector('.here').textContent = el.getAttribute('href').replace('#', '');
  7. }
  8. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement