Skip to content

Instantly share code, notes, and snippets.

@garystorey
Created May 20, 2015 14:56
Show Gist options
  • Select an option

  • Save garystorey/03d0db00863188242909 to your computer and use it in GitHub Desktop.

Select an option

Save garystorey/03d0db00863188242909 to your computer and use it in GitHub Desktop.
localStorage.setItem('visited-'+window.location.pathname,true);
var links = document.getElementsByTagName('a');
for (i=0;i<links.length;i++) {
var link = links[i];
if (link.host == window.location.host
&& localStorage.getItem('visited-' + link.pathname + '/')) {
link.dataset.visited = true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment