Skip to content

Instantly share code, notes, and snippets.

@zengxinhui
Created April 16, 2020 22:38
Show Gist options
  • Save zengxinhui/8a4d39aaf5c2cd8e8a47f8b686730671 to your computer and use it in GitHub Desktop.
Save zengxinhui/8a4d39aaf5c2cd8e8a47f8b686730671 to your computer and use it in GitHub Desktop.
keep only visible characters of a page
document.body.innerHTML = document.body.innerHTML.replace(/[^\x20-\x7E]/g, '');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment