Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dawnTestCode/dcd45a1ddbd5bcdaca103c0157823410 to your computer and use it in GitHub Desktop.
Save dawnTestCode/dcd45a1ddbd5bcdaca103c0157823410 to your computer and use it in GitHub Desktop.
cb remove script tags from html
var bodytext = '';
var m = value.data.match(/<body[^>]*>([^<]*(?:(?!<\/?body)<[^<]*)*)<\/body\s*>/i);
if (m) bodytext = m[1];
console.log(bodytext)
send(0, bodytext);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment