Skip to content

Instantly share code, notes, and snippets.

@alexgibson
Created January 30, 2012 13:55
Show Gist options
  • Save alexgibson/1704513 to your computer and use it in GitHub Desktop.
Save alexgibson/1704513 to your computer and use it in GitHub Desktop.
return text content from HTML
//return text content from html
function stripHTML(html) {
var tmp = document.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