Dirty, but it works π
function html_entity_decode(str) {
var ta = document.createElement("textarea");
ta.innerHTML=str.replace(/</g,"<").replace(/>/g,">");
toReturn = ta.value;
ta = null;
return toReturn;
}
Consider donating.
I don’t run ads on my blog nor do I do this for profit. A donation however would always put a smile on my face though. Thanks!
Great, thank you, it the easiest way I’ve found.
thank you… it works……