Advertisement
Guest User

Untitled

a guest
Jun 30th, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. localStorage.setItem('visited-'+window.location.pathname,true);
  2. var links = document.getElementsByTagName('a');
  3. for (i=0;i<links.length;i++) {
  4. var link = links[i];
  5. if (link.host == window.location.host && localStorage.getItem('visited-' + link.pathname + '/')) {
  6. link.dataset.visited = true;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement