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.
|
4
|
|
|
|
|
|
Since you're using jQuery, you can just set the element's
|
||
|
|
|
Source: http://debuggable.com/posts/encode-html-entities-with-jquery:480f4dd6-13cc-4ce9-8071-4710cbdd56cb Could the original poster edit the question title to clarify this question is about HTML entity escaping, not URL encoding? |
||
|
|
|
|
Instead of using jQuery I use the below function to strip out HTML.
|
||
|
|
|
|
Thanks for the answers! I agree, escapeURIComponent() isn't exactly what I was looking for since it is meant for escaping URLs and not HTML. I didn't realize that .text() in jQuery would escape my HTML strings. That is really what I was looking for. Thanks @travis! |
||
|
|
|
|
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
|
||||
|
|
|
@brad - escapeURIComponent() will work better than escape() for UTF-8 special characters like รถ... |
||
|
|
|
|
Is there any reason you can't use the native functionality? For example:
This is normally what I use, and has worked for me thus far. |
||
|
|
|
|
No need for a jQuery function - it's built into JavaScript itself - |
||
|
|
