Here you can find the source of escapelHTML()
String.prototype.escapelHTML = function(){ return String(this) .replace(/&/g, "&") .replace(/</g, "<") .replace(/>/g, ">") .replace(/"/g, """) .replace(/'/g, "'") .replace(/\//g, "/"); };
var entityMap = { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''', '/': '/' }; String.prototype.escapeHtml = function() { ...
String.prototype.escapeHtml = String.prototype.escapeHtml || (String.prototype.escapeHtml = function() { return this.replace(/&/g, "&").replace(/"/g, """).replace(/</g, "<").replace(/>/g, ">"); });
String.prototype.escape_html = function() { return this.replace(/&/g, "&") .replace(/</g, "<") .replace(/>/g, ">") .replace(/"/g, """);
String.prototype.escape_html = function(){ var span = document.createElement('span'); var txt = document.createTextNode(''); span.appendChild(txt); txt.data = this; return span.innerHTML; };
String.prototype.escape_html = function(){ var span = document.createElement('span'); var txt = document.createTextNode(''); span.appendChild(txt); txt.data = this; return span.innerHTML; }; var Notifer = new function(){ var self = this; ...
String.prototype.htmlEscape = function(){ var span = document.createElement('span'); var txt = document.createTextNode(''); span.appendChild(txt); txt.data = this; return span.innerHTML; };
String.prototype.htmlEscape = function () { return this.replace(/&/g, '%amp;') .replace(/</g, '<') .replace(/>/g, '>') .replace(/"/g, '"') .replace(/'/g, '''); console.log('<script>'.htmlEscape());
String.prototype.htmlEscape = function() { return $('<div/>').text(this.toString()).html(); }; (function($) { $.fn.hasScrollBar = function() { if (this.height() < 0) { return false; return this.get(0).scrollHeight > this.height(); ...
String.prototype.htmlEscape = function (){ var escapedStr = String(this).replace(/&/g, '&'); escapedStr = escapedStr.replace(/\s/g, ' '); return escapedStr; var text = 'This is for testing'; console.log(text); text = text.htmlEscape(); console.log(text); ...