var charsMap = { '&': '&', '<': '<', '>': '>', '"': '"', '\'': ''' }; value = value.replace(/[&<>"']/gm, function(m) { return charsMap[m]; });