Skip to content

Instantly share code, notes, and snippets.

@johnmurch
Created August 25, 2021 03:03
Show Gist options
  • Select an option

  • Save johnmurch/ca343045ae7f3041cb734af12af9d820 to your computer and use it in GitHub Desktop.

Select an option

Save johnmurch/ca343045ae7f3041cb734af12af9d820 to your computer and use it in GitHub Desktop.
Remove HTML from String
function stripHtml(html){
var temporalDivElement = document.createElement("div");
temporalDivElement.innerHTML = html;
return temporalDivElement.textContent || temporalDivElement.innerText || "";
}
// let html = "<div><p>Whatever</p><p>This is a <b>test</b></p></div>";
// console.log(stripHtml(html));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment