Adsense Code/ HTML Code Parser
function $(esc_tool){ return document.getElementById(esc_tool) } var char2entity = { "'" : ''', '"' ...
https://iskablogs.blogspot.com/2012/06/adsense-code-html-code-parser.html
function $(esc_tool){
return document.getElementById(esc_tool)
}
var char2entity = { "'" : ''', '"' : '"', '<' : '<', '>' : '>', '&' : '&'};
function escape_entities(str) {
var rv = '';
for (var i = 0;i < str.length; i++) {
var ch = str.charAt(i);
rv += char2entity[ch] || ch;
}
return rv;
}
function do_escape(e){
$('escaped').value = escape_entities(e.value)
}
Enter raw code here