Skip to content

Instantly share code, notes, and snippets.

@geta6
Created June 6, 2012 06:44
Show Gist options
  • Save geta6/2880311 to your computer and use it in GitHub Desktop.
Save geta6/2880311 to your computer and use it in GitHub Desktop.
忙しい人のためのjsでHTMLをエスケープするやつ
function (text) {
var obj = document.createElement('pre');
obj[typeof obj.textContent != 'undefined'?'textContent':'innerText'] = text;
return obj.innerHTML;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment