Skip to content

Instantly share code, notes, and snippets.

@kirpalmakanga
Created March 3, 2020 09:58
Show Gist options
  • Save kirpalmakanga/8d627f651c1cead2279dd5a238c0ad17 to your computer and use it in GitHub Desktop.
Save kirpalmakanga/8d627f651c1cead2279dd5a238c0ad17 to your computer and use it in GitHub Desktop.
Remove all script tags from html string
const stripScripts = (s) => {
const div = document.createElement('div');
div.innerHTML = s;
const scripts = div.querySelectorAll('script');
for (var script of scripts) {
script.parentNode.removeChild(script);
}
return div.innerHTML;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment