vote up 15 vote down star
4

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.

flag

8 Answers

vote up 19 vote down check

Since you're using jQuery, you can just set the element's text property:

// before:
// <div class="someClass">text</div>
var someHtmlString = "<script>alert('hi!');</script>";
$("div.someClass").text(someHtmlString);
// after: 
// <div class="someClass">&lt;script&gt;alert('hi!');&lt;/script&gt;</div>
link|flag
You missed the point that you have to access $("div.someClass").html() to get the escaped version out. – Morten Christiansen Jan 30 at 20:17
vote up 5 vote down
$('<div/>').text('This is fun & stuff').html(); // "This is fun &amp; stuff"

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?

link|flag
vote up -1 vote down

Instead of using jQuery I use the below function to strip out HTML.

function stripHTML(string) { 
    return string.replace(/<(.|\n)*?>/g, ''); 
}
link|flag
vote up 0 vote down

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!

link|flag
vote up 10 vote down

If you're escaping for HTML, there are only three that I can think of that would be really necessary:

html.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;");

Depending on your use case, you might also need to do things like " to &quot;. If the list got big enough, I'd just use an array:

var escaped = html;
var findReplace = [[/&/g, "&amp;"], [/</g, "&lt;"], [/>/g, "&gt;"], [/"/g, "&quot;"]]
for(item in findReplace)
    escaped = escaped.replace(item[0], item[1]);

escapeURIComponent() will only escape it for URLs, not for HTML.

link|flag
I think your regular expressions need to be global for this to work, using /&/g instead of /&/. – Jed Schmidt Jun 17 at 17:45
You are correct. I will correct it. – tghw Jun 17 at 20:11
vote up -1 vote down

@brad - escapeURIComponent() will work better than escape() for UTF-8 special characters like รถ...

link|flag
vote up -1 vote down

Is there any reason you can't use the native functionality? For example:

>>>escape("<script>alert('');</script>")

"%3Cscript%3Ealert%28%27%27%29%3B%3C/script%3E"

This is normally what I use, and has worked for me thus far.

link|flag
vote up -2 vote down

No need for a jQuery function - it's built into JavaScript itself - encodeURIComponent()

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.