Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Matthew-Ma/beea28d298b65614e81b4734ffe02b6a to your computer and use it in GitHub Desktop.
Save Matthew-Ma/beea28d298b65614e81b4734ffe02b6a to your computer and use it in GitHub Desktop.
var html = "<p>Some HTML</p>";
var div = document.createElement("div");
div.innerHTML = html;
var text = div.textContent || div.innerText || "";
console.log(text);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment