Monday, 7 September 2015

Convertign html special cars to symbols

var val = options.selectedItem.innerHTML;
val = val.replace(/&amp;/g,'&').replace(/&gt;/g,'>').replace(/&lt;/g,'<').replace(/&quot;/g,'"');

$(options.target).value = val;

No comments:

Post a Comment