In many tags of spring.tld there are those attributes: htmlEscape javaScriptEscape
The question may seem trivial, but which is the difference from html escape and javascript escape in this context?
In many tags of spring.tld there are those attributes: htmlEscape javaScriptEscape
The question may seem trivial, but which is the difference from html escape and javascript escape in this context?
Copyright © 2021 Jogjafile Inc.
Well the htmlEscape is use to escape literal within the html document. like for example, if the html document contains special characters, it will be escaped as follows:
Javascript escape will apply across javascript literal. Suppose I have the literal:
Applying a javascript will escape the single and double quotes, the newline chars, the tabs, etc.