Skip to content

Instantly share code, notes, and snippets.

@fabrizim
Created July 29, 2020 21:11
Show Gist options
  • Save fabrizim/fc4a67c72f5506ee79f895836fd44ef2 to your computer and use it in GitHub Desktop.
Save fabrizim/fc4a67c72f5506ee79f895836fd44ef2 to your computer and use it in GitHub Desktop.
function stripScript( html ){
let match;
const re = /<script[^>]+?src=['"](.+?)['"][^>]*?><\/script>/gi;
while( (match =re.exec(html)) ){
const script = document.createElement('script');
script.src = match[1];
document.body.appendChild( script );
}
html = html.replace(re, '');
return html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment