Skip to content

Instantly share code, notes, and snippets.

@goldnetonline
Created September 2, 2016 17:45
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 goldnetonline/b3a814635930527c21922723c68e31ae to your computer and use it in GitHub Desktop.
Save goldnetonline/b3a814635930527c21922723c68e31ae to your computer and use it in GitHub Desktop.
Javascript Strips Tag
function stripTag(html) {
var tmp = dc.createElement("div");
tmp.innerHTML = html;
return tmp.textContent || tmp.innerText || "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment