Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

A user of my HTML 5 application can enter his name in a form, and this name will be displayed elsewhere. More specifically, it will become the innerHTML of some HTML element.

The problem is that this can be exploited if one enters valid HTML markup in the form, i.e. some sort of HTML injection, if you will.

The user's name is only stored and displayed on the client side so in the end the user himself is the only one who is affected, but it's still sloppy.

Is there a way to escape a string before I put it in an elements innerHTML in Dojo? I guess that Dojo at one point did in fact have such a function (dojo.string.escape()) but it doesn't exist in version 1.7.

Thanks.

share|improve this question
might want to work on your accept rate. i'd use jQuery.text() – bdares Mar 28 '12 at 8:21
1  
@bdares: I'm happy with Dojo and I'm not going to include jQuery just for this. – Bossie Mar 28 '12 at 8:57

3 Answers

up vote 10 down vote accepted
dojox.html.entities.encode(myString);
share|improve this answer
Works like a charm and I don't have to reinvent the wheel. Thanks! – Bossie Mar 28 '12 at 11:17

Check this example of dojo.replace

share|improve this answer

I tried to find out how other libraries implement this function and I stole the idea of the following from MooTools:

var property = (document.createElement('div').textContent == null) ? 'innerText': 'textContent';
elem[property] = "<" + "script" + ">" + "alert('a');" + "</" + "script" + ">";

So according to MooTools there is either the innerText or the textContent property which can escape HTML.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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