Skip to content

Instantly share code, notes, and snippets.

@tedshd
Last active August 29, 2015 14:19
Show Gist options
  • Save tedshd/1e3581a74c4f2be7a64f to your computer and use it in GitHub Desktop.
Save tedshd/1e3581a74c4f2be7a64f to your computer and use it in GitHub Desktop.
Trim html
function trimHTMLTagContent(string) {
string = string.replace(/\n/g, '');
string = string.replace(/\s\s/g, '');
// remove two space
string = string.replace(/<font color.*?<\/font>/mig, '');
// remove color font content
string = string.replace(/<[^>]*>/g, '');
// remove html tag
console.log(string);
}
var str = document.querySelector('#NickContainer').innerHTML;
trimHTMLTagContent(str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment