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

I'm using Javascript to pull a value out from a hidden field and display it on a textbox

The value in the hidden field is encoded.

e.g.

<input id='hiddenId' type='hidden' value='chalk &amp; cheese' />

gets pulled into

<input type='text' value='chalk &amp; cheese' />

via some JQuery to get the value from the hidden field (Its at this point that I lose the encoding)

$('#hiddenId').attr('value')

The problem is when I read chalk & cheese from the hidden field, javascript seems to lose the encoding, but to escape " and ' I want the encoding to remain.

Is there a Javascript library or a Jquery method that will Html Encode a string?

share|improve this question
Can you show the Javascript you are using? – Sinan Taifour Aug 2 '09 at 21:11
have added how I get value from hidden field – AJM Aug 2 '09 at 21:17
debuggable.com/posts/… – AJM Aug 2 '09 at 21:37
Do NOT use the innerHTML method (the jQuery .html() method uses innerHTML), as on some (I've only tested Chrome) browsers, this won't escape quotes, so if you were to put your value into an attribute value, you would end up with an XSS vulnerability. – James Roper Apr 29 '11 at 3:27

10 Answers

up vote 464 down vote accepted

I use these functions:

function htmlEncode(value){
  //create a in-memory div, set it's inner text(which jQuery automatically encodes)
  //then grab the encoded contents back out.  The div never exists on the page.
  return $('<div/>').text(value).html();
}

function htmlDecode(value){
  return $('<div/>').html(value).text();
}

Basically a div element is created in memory, but it is never appended to the document.

On the htmlEncode function I set the innerText of the element, and retrieve the encoded innerHTML, on the htmlDecode function I set the innerHTML value of the element and the innerText is retrieved.

Check a running example here.

share|improve this answer
33  
This works for most scenarios, but this implementation of htmlDecode will eliminate any extra whitespace. So for some values of "input", input != htmlDecode(htmlEncode(input)). This was a problem for us in some scenarios. For example, if input = "<p>\t Hi \n There </p>", a roundtrip encode/decode will yield "<p> Hi There </p>". Most of the time this is okay, but sometimes it isn't. :) – pettys Mar 19 '10 at 16:25
3  
Very clean solution! :) :) – Raj Jul 14 '11 at 11:51
7  
Damn! Simplicity combined with genius. – Saeed Neamati Dec 10 '11 at 8:23
4  
It's also efficient; see jsperf – Yuval Apr 9 '12 at 21:31
5  
Though it was answered two years later, the response from @Anentropic below is better in every way. – chad Jul 19 '12 at 4:51
show 13 more comments

The jQuery trick doesn't encode quote marks and in IE it will strip your whitespace.

Based on the escape templatetag in Django, which I guess is heavily used/tested already, I made this function which does what's needed.

It's arguably simpler (and possibly faster) than any of the workarounds for the whitespace-stripping issue - and it encodes quote marks, which is essential if you're going to use the result inside an attribute value for example.

function htmlEscape(str) {
    return String(str)
            .replace(/&/g, '&amp;')
            .replace(/"/g, '&quot;')
            .replace(/'/g, '&#39;')
            .replace(/</g, '&lt;')
            .replace(/>/g, '&gt;');
}

function htmlUnescape(value){
    return String(value)
        .replace(/&quot;/g, '"')
        .replace(/&#39;/g, "'")
        .replace(/&lt;/g, '<')
        .replace(/&gt;/g, '>')
        .replace(/&amp;/g, '&');
}

Update:
jsperf tests show this method is fast and possibly the fastest option if you're in a recent browser version

share|improve this answer
1  
You can also use &apos; instead of &#39; – Ferruccio Dec 28 '11 at 14:38
13  
1  
Thanks, I never realized that &apos; is not a valid HTML entity. – Ferruccio Jan 3 '12 at 14:22
Thanks! u r right about above solution not working for quotes... – yogs Jan 9 '12 at 12:12
Thanks a lot for providing a solution which works with quotation marks. :) – Bay Jun 5 '12 at 15:23
show 4 more comments

I know this is an old one, but I wanted to post a variation of the answer that will work in IE without removing lines. This should really be a comment on the answer, but I'm not allowed to comment yet. So here it is:

function multiLineHtmlEncode(value) {
        var lines = value.split(/\r\n|\r|\n/);
        for (var i = 0; i < lines.length; i++) {
            lines[i] = htmlEncode(lines[i]);
        }
        return lines.join('\r\n');
    }

    function htmlEncode(value) {
        return $('<div/>').text(value).html();
    } 
share|improve this answer

Good answer. Note that if the value to encode is undefined or null with jQuery 1.4.2 you might get errors such as:

jQuery("<div/>").text(value).html is not a function

OR

Uncaught TypeError: Object has no method 'html'

The solution is to modify the function to check for an actual value:

function htmlEncode(value){ 
    if (value) {
        return jQuery('<div/>').text(value).html(); 
    } else {
        return '';
    }
}
share|improve this answer
5  
jQuery('<div/>').text(value || '').html() – roufamatic Sep 6 '11 at 22:59
2  
@roufamatic - Nice one-liner. But checking for a non-empty value with an if saves having to create a DIV on the fly and grab it's value. This can be much more performant if htmlEncode is being called a lot AND if it's likely that value will be empty. – leepowers Sep 9 '11 at 19:49
1  
Good point. Well, there's always ?: :-) – roufamatic Sep 12 '11 at 18:22

FWIW, the encoding is not being lost. The encoding is used by the markup parser (browser) during the page load. Once the source is read and parsed and the browser has the DOM loaded into memory, the encoding has been parsed into what it represents. So by the time your JS is execute to read anything in memory, the char it gets is what the encoding represented.

I may be operating strictly on semantics here, but I wanted you to understand the purpose of encoding. The word "lost" makes it sound like something isn't working like it should.

share|improve this answer

Here's a non-jQuery version that is considerably faster than both the jQuery .html() version and the .replace() version. This preserves all whitespace, but like the jQuery version, doesn't handle quotes.

function htmlEncode( html ) {
    return document.createElement( 'a' ).appendChild( 
        document.createTextNode( html ) ).parentNode.innerHTML;
};

Speed: http://jsperf.com/htmlencoderegex/17

speed test

Demo: jsFiddle

Output:

output

Script:

function htmlEncode( html ) {
    return document.createElement( 'a' ).appendChild( 
        document.createTextNode( html ) ).parentNode.innerHTML;
};

function htmlDecode( html ) {
    var a = document.createElement( 'a' ); a.innerHTML = html;
    return a.textContent;
};

document.getElementById( 'text' ).value = htmlEncode( document.getElementById( 'hidden' ).value );

//sanity check
var html = '<div>   &amp; hello</div>';
document.getElementById( 'same' ).textContent = 
      'html === htmlDecode( htmlEncode( html ) ): ' 
    + ( html === htmlDecode( htmlEncode( html ) ) );

HTML:

<input id="hidden" type="hidden" value="chalk    &amp; cheese" />
<input id="text" value="" />
<div id="same"></div>
share|improve this answer

Prototype has it built-in the String class. So if you are using/plan to use Prototype, it does something like:

'<div class="article">This is an article</div>'.escapeHTML();
// -> "&lt;div class="article"&gt;This is an article&lt;/div&gt;"
share|improve this answer
5  
After looking at Prototype's solution, this is all it's doing... .replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;'); Easy enough. – Steve Wortham Feb 3 '11 at 0:14
2  
shouldn't it do something with quote marks too? that's not good – Anentropic Aug 19 '11 at 13:49

afaik there isn't any straight forward HTML Encode/Decode methods in javascript.

However, what you can do, is to use JS to create an arbitrary element, set it's inner text, then read it using innerHTML.

say, with jQuery this should work:

var helper = $('chalk & cheese').hide().appendTo('body');
var htmled = helper.html();
helper.remove();

or something along these lines

share|improve this answer

You shouldn't have to escape/encode values in order to shuttle them from one input field to another.

<form>
 <input id="button" type="button" value="Click me">
 <input type="hidden" name="hiddenId" value="I like cheese">
 <input type="text" name="output">
</form>
<script>
    $(document).ready(function(e) {
        $('#button').click(function(e) {
            $('#output').val($('#hiddenId').val());
        });
    });
</script>

JS doesn't go inserting raw HTML or anything; it just tells the DOM to set the value property (or attribute; not sure). Either way, the DOM handles any encoding issues for you. Unless you're doing something odd like using document.write or eval, HTML-encoding will be effectively transparent.

If you're talking about generating a new textbox to hold the result...it's still as easy. Just pass the static part of the HTML to jQuery, and then set the rest of the properties/attributes on the object it returns to you.

$box = $('<input type="text" name="whatever">').val($('#hiddenId').val());
share|improve this answer

If you want to use jQuery. I found this:

http://www.jquerysdk.com/api/jQuery.htmlspecialchars

(part of jquery.string plugin offered by jQuery SDK)

The problem with Prototype I believe is that it extends base objects in JavaScript and will be incompatible with any jQuery you may have used. Of course, if you are already using Prototype and not jQuery, it won't be a problem.

EDIT: Also there is this, which is a port of Prototype's string utilities for jQuery:

http://stilldesigning.com/dotstring/

share|improve this answer

protected by Community Aug 15 '11 at 11:25

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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