Skip to content

Instantly share code, notes, and snippets.

@cuschk
Created April 25, 2018 17:46
Show Gist options
  • Save cuschk/315ed7b4a9aea012bcede4cf89475d97 to your computer and use it in GitHub Desktop.
Save cuschk/315ed7b4a9aea012bcede4cf89475d97 to your computer and use it in GitHub Desktop.
Remove all scripts from a web page
document.querySelectorAll('script').forEach(el => { el.parentNode.removeChild(el); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment