/
escapeHtml
escapeHtml
Description
Escapes the given html removing traces of offending characters that could be wrongfully interpreted as markup The following characters are reserved in HTML and must be replaced with their corresponding HTML entities:
" is replaced with "
& is replaced with &
< is replaced with <
> is replaced with >
Parameters
Return Type
String
Returns the html input escaped.
Example
return escapeHtml("<html><script><img src=1 onerror=alert(1)></script></html>");
Returns :Returns "<html><script><img src=1 onerror=alert(1)></script></html>"
See also
, multiple selections available,
Related content
matchText
matchText
Read with this
escapeHtml
escapeHtml
More like this
substring
substring
Read with this
escapeHtml
escapeHtml
More like this
split
Read with this
urlEncode
urlEncode
More like this