up vote 88 down vote favorite
21
share [g+] share [fb]

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.

link|improve this question

feedback

4 Answers

up vote 72 down vote accepted

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|improve this answer
12  
You missed the point that you have to access $("div.someClass").html() to get the escaped version out. – Morten Christiansen Jan 30 '09 at 20:17
2  
This isn't cross browser safe if your string has whitespaces and \n \r \t chars in it – nivcaner Dec 4 '10 at 17:31
@nivcaner can you give (or link to) an example of it failing? – travis Dec 6 '10 at 18:58
@travis This is documented on the jQuery website: "Due to variations in the HTML parsers in different browsers, the text returned may vary in newlines and other white space." api.jquery.com/text – geofflee Mar 24 '11 at 11:48
@geofflee hmm, interesting, thanks for that info! I'll do some testing, but it sounds like that's when .text() is called on some DOM nodes. I could be wrong, I'll report back... – travis Mar 24 '11 at 15:19
show 3 more comments
feedback
$('<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

link|improve this answer
1  
As mentioned in the above answer, this solution is not guaranteed to preserve whitespace. – geofflee Mar 24 '11 at 11:53
3  
It should be noted that this does nothing to escape single or double quotes. if you're planning to put the value into an HTML attribute, this can be a problem. – Kip Jun 16 '11 at 19:21
feedback

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(var item in findReplace)
    escaped = escaped.replace(findReplace[item][0], findReplace[item][1]);

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

link|improve this answer
I think your regular expressions need to be global for this to work, using /&/g instead of /&/. – Jed Schmidt Jun 17 '09 at 17:45
You are correct. I will correct it. – tghw Jun 17 '09 at 20:11
4  
This regular expression will produce strange results if the HTML in question already has escaped entities. For example, escaping "Tom &amp; Jerry" will produce "Tom &amp;amp; Jerry" – Ryan Nov 7 '10 at 18:24
1  
Please use var to declare item locally; anyway, don't use a for … in loop at all when looping through an array! Use an ordinary for loop instead. Oh, and it's encodeURIComponent, not escapeURIComponent. – Marcel Korpel Mar 16 '11 at 16:33
1  
Just a kind reminder for new people, don't use this if you intend to have non-english characters somewhere on your website ... Obviously this won't do because of characters with accents like 'é' : &eacute; Here's a list of html entities, for reference : w3schools.com/tags/ref_entities.asp – LoganWolfer Apr 1 '11 at 21:50
show 3 more comments
feedback

If your're going the regex route, there's an error in tghw's example above.

<!-- WON'T WORK -  item[0] is an index, not an item -->

var escaped = html; 
var findReplace = [[/&/g, "&amp;"], [/</g, "&lt;"], [/>/g,"&gt;"], [/"/g,
"&quot;"]]

for(var item in findReplace) {
     escaped = escaped.replace(item[0], item[1]);   
}


<!-- WORKS - findReplace[item[]] correctly references contents -->

var escaped = html;
var findReplace = [[/&/g, "&amp;"], [/</g, "&lt;"], [/>/g, "&gt;"], [/"/g, "&quot;"]]

for(var item in findReplace) {
     escaped = escaped.replace(findReplace[item[0]], findReplace[item[1]]);
}
link|improve this answer
I believe it should be for(var item in findReplace) { escaped = escaped.replace(findReplace[item][0], findReplace[item][1]); } – Chris Jun 23 '11 at 21:23
feedback

Your Answer

 
or
required, but never shown

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