up vote 3 down vote favorite
1
share [g+] share [fb]

I know that I can use $.html to set the HTML content of something, and $.text to set the content (and that this escapes the HTML).

Unfortunately, I'm using $.append, which doesn't escape the HTML.

I've got something like this:

function onTimer() {
    $.getJSON(url, function(data) {
        $.each(data, function(i, item) {
           $('#messages').append(item);
        }
    }
}

...where the url returns an array of strings. Unfortunately, if one of those strings is (e.g.) <script>alert('Hello')</script>, this gets executed.

How do I get it to escape HTML?

link|improve this question

74% accept rate
feedback

2 Answers

up vote 9 down vote accepted

Check out how jQuery does it:

text: function( text ) {
	if ( typeof text !== "object" && text != null )
		return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );

	var ret = "";

	jQuery.each( text || this, function(){
		jQuery.each( this.childNodes, function(){
			if ( this.nodeType != 8 )
				ret += this.nodeType != 1 ?
					this.nodeValue :
					jQuery.fn.text( [ this ] );
		});
	});

	return ret;
},

So something like this should do it:

$('#mydiv').append(
    document.createTextNode('<b>Hey There!</b>')
);

EDIT: Regarding your example, it's as simple as:

$('#messages').append(document.createTextNode(item));
link|improve this answer
feedback

You're appending an element which already has content? Or you're adding the content after you append? Either way, you still need to do .text(...) on that element.

If you're using append and passing HTML as the argument, then try creating the element first, and passing it to append.

Ex:

$('<div></div>').text('your content here').appendTo('div#someid')
link|improve this answer
Won't this wrap the text in a DIV? I can't see how that would be desired most of the time. – Paolo Bergantino Jun 3 '09 at 13:01
That works, but it seems a bit clunky. Do you want to throw in an explanation of how it works and why I'd want to use it? – Roger Lipscombe Jun 3 '09 at 13:03
Aha. I start to see it. It doesn't seem that you can open a tag -- i.e. $('#x').append('<strong>'); and close it again later. You seem to need your scheme. – Roger Lipscombe Jun 4 '09 at 12:51
feedback

Your Answer

 
or
required, but never shown

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