Skip to content

Instantly share code, notes, and snippets.

@jblanche
Created December 30, 2012 16:43
Show Gist options
  • Save jblanche/4413724 to your computer and use it in GitHub Desktop.
Save jblanche/4413724 to your computer and use it in GitHub Desktop.
Le monde cleaner
[].forEach.call(
document.querySelectorAll('a.lien_interne'), function(el){
el.outerHTML = el.innerText;
}
);
@fabienhinault
Copy link

I added

document.getElementById('bandeau_bas').style.display = "none";

to remove the blinking text.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment