/ Published in: JavaScript
Expand |
Embed | Plain Text
String.prototype.HTMLEncode = function (){ var result = ''; for(var i=0; i<this.length; i++){ result += '&#' + this.charCodeAt(i) + ';'; } return result; }
You need to login to post a comment.
