Skip to content

Instantly share code, notes, and snippets.

@icecreammatt
Created August 1, 2013 00:12
Show Gist options
  • Save icecreammatt/6127416 to your computer and use it in GitHub Desktop.
Save icecreammatt/6127416 to your computer and use it in GitHub Desktop.
function decodeHtmlElements(string) {
var htmlText = document.createElement("DIV");
MSApp.execUnsafeLocalFunction(function () {
htmlText.innerHTML = string;
});
return htmlText.textContent || htmlText.innerText || "";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment