Skip to content

Instantly share code, notes, and snippets.

@natchiketa
Created August 9, 2014 18:56
Show Gist options
  • Save natchiketa/9378e0f812823e8d6fc5 to your computer and use it in GitHub Desktop.
Save natchiketa/9378e0f812823e8d6fc5 to your computer and use it in GitHub Desktop.
Bookmarklet to remove elements
javascript:(function(){
[].prototype
.forEach
.call(document.querySelectorAll('[id*="taboola"]'), function(el) {
el.parentElement.removeChild(el);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment