Does anyone know of an easy way to escape HTML from strings in jQuery? I need to be able to pass an arbitrary string and have it properly escaped for display in an HTML page (preventing JavaScript/HTML injection attacks). I'm sure it's possible to extend jQuery to do this, but I don't know enough about the framework at the moment to accomplish this.
|
feedback
|
|
Since you're using jQuery, you can just set the element's
| |||||||||||||||
feedback
|
Source: http://debuggable.com/posts/encode-html-entities-with-jquery:480f4dd6-13cc-4ce9-8071-4710cbdd56cb | |||||||||
feedback
|
|
If you're escaping for HTML, there are only three that I can think of that would be really necessary:
Depending on your use case, you might also need to do things like " to
| |||||||||||||||||
feedback
|
|
If your're going the regex route, there's an error in tghw's example above.
| |||
feedback
|