Skip to content

Instantly share code, notes, and snippets.

@FelisPhasma
Created March 8, 2015 00:07
Show Gist options
  • Save FelisPhasma/9cddd973d8ea374832c4 to your computer and use it in GitHub Desktop.
Save FelisPhasma/9cddd973d8ea374832c4 to your computer and use it in GitHub Desktop.
Turns text into html special characters.
function HTMLEncode(str){
var ret = "";
for(i=0;i<str.length;i++){
ret = ret + "&#" + str.charCodeAt(i) + ";"
};
return ret;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment