HTML Sanitizer
One of the many implementations of encoding decoding html in JavaScript. For other ways, visit stackoverflow.
Edit in JSFiddle, open console from DevTools and hit the Result/JavaScript.
var encapsulateEntityMap = { // mapping html Entities
"&": "&",
"<": "<",
">": ">",
"/": "/",
'"': """,
"'": "'",
"&": "&",
"<": "<",
">": ">",
"/": "/",
""": '"',
"'": "'"
};
function HTMLsanitizer(string) {
if (!string) {
return false;
}
if (!!(string.match(/(<|>|\/|\"|\'|&[^a-z])/g))) { // only do encodeing for these entities, in case of & don't decode & only &
return String(string).replace(/[&<>"'\/]/g, function(s) { // replace each entity with encoded map representative "&": "&"
return encapsulateEntityMap[s];
});
} else {
return String(string).replace(/(&|<|>|/|"|')/g, function(s) { // replace each encoded entity with decoded map equivalent "&": "&"
return encapsulateEntityMap[s];
});
}
}
console.log(HTMLsanitizer("<p>this \"is\" a</p>", "encode")); #=> <p>this "is" a</p>
console.log(HTMLsanitizer("<p>this "is" a</p>")); #=> <p>this "is" a</p>
console.log(HTMLsanitizer()); #=> false
console.log(HTMLsanitizer(HTMLsanitizer("<p>this \"is\" a</p>", "encode"))); #=> <p>this "is" a</p>