Skip to content

Instantly share code, notes, and snippets.

@tuxracer
Created July 17, 2015 01:32
Show Gist options
  • Save tuxracer/51ef40004d21654dd2ca to your computer and use it in GitHub Desktop.
Save tuxracer/51ef40004d21654dd2ca to your computer and use it in GitHub Desktop.
Remove plugins
els = document.querySelectorAll('video,audio,embed,object,iframe');
for (var i = 0; i < els.length; i++) {
el = els[i];
el.parentNode.removeChild(el);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment