/ Published in: JavaScript
URL: http://www.arkinex.com/javascript/js-functions/26/javascript-function-htmlentities/
Expand |
Embed | Plain Text
function html_entity_decode(s) { var t=document.createElement(’textarea’); t.innerHTML = s; var v = t.value; t.parentNode.removeChild(t); return v; }
You need to login to post a comment.
