Skip to content

Instantly share code, notes, and snippets.

@iSWORD
Created October 30, 2012 13:31
Show Gist options
  • Save iSWORD/3980204 to your computer and use it in GitHub Desktop.
Save iSWORD/3980204 to your computer and use it in GitHub Desktop.
HTML+JS Mega-min special char escaper
<textarea style="display:block" cols=42 rows=10 onkeyup="t=this;t.nextElementSibling.value=t.value.replace(/</g,'&amp;lt;').replace(/>/g,'&amp;gt;')"></textarea>
<textarea readonly onclick="t=this;t.focus();t.select();"></textarea>
<textarea style="display:block" cols=42 rows=10 onkeyup="t=this;t.nextElementSibling.value=t.value.replace(/</g,'&amp;lt;').replace(/>/g,'&amp;gt;')"></textarea>
<textarea readonly onclick="t=this;t.focus();t.select();"></textarea>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment