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

How do I use jQuery to decode HTML entities in a string?

Or how do I stop jQuery from encoding a string with HTML entities in the first place?

share|improve this question
2  
It would be great if you will try elaborate your question as well extend it with some examples of what you are asking. – Artem Barger Jul 18 '09 at 12:05
1  
Could you clear up what you mean by "stop jquery from encoding a string with html entities"? In which context is this happening? – oggy Jul 18 '09 at 12:06
-1 against the grain. Why would you want to use jQuery for that when JavaScript has built in methods? – Christophe Mar 29 at 17:58

10 Answers

up vote 245 down vote accepted

Actually, try

var decoded = $("<div/>").html(encodedStr).text();
share|improve this answer
7  
This one WORKS! – mhughes May 13 '10 at 23:00
2  
Works great. Nice and elegant. :) – nickb Aug 26 '10 at 0:24
65  
Do not do this with untrusted input. Many browsers load images and fire related events even if the node is not attached to the DOM. Try running $("<div/>").html('<img src="http://www.google.com/images/logos/ps_logo2.png" onload=alert(1337)>'). In Firefox or Safari it fires the alert. – Mike Samuel Mar 16 '11 at 20:37
3  
@ekkis, you need to strip tags before trying to decode entities. str.replace(/<\/?\w(?:[^"'>]|"[^"]*"|'[^']*')*>/g, "") or something similar. – Mike Samuel May 29 '11 at 5:07
1  
A better implementation (in my opinion) that strips most HTML tags (courtesy of Mike) from the input is in my answer of a similar question. It also does not have the overhead of jQuery so it's quite suitable to other environments. – Robert K Mar 7 '12 at 21:41
show 7 more comments

I think you're confusing the text and HTML methods. Look at this example, if you use an element's inner HTML as text, you'll get decoded HTML tags (second button). But if you use them as HTML, you'll get the HTML formatted view (first button).

<div id="myDiv">
    here is a <b>HTML</b> content.
</div>
<br />
<input value="Write as HTML" type="button" onclick="javascript:$('#resultDiv').html($('#myDiv').html());" />
&nbsp;&nbsp;
<input value="Write as Text" type="button" onclick="javascript:$('#resultDiv').text($('#myDiv').html());" />
<br /><br />
<div id="resultDiv">
    Results here !
</div>

First button writes : here is a HTML content.

Second button writes : here is a <B>HTML</B> content.

By the way, you can see a plug-in that I found in jQuery plugin - HTML decode and encode that encodes and decodes HTML strings.

share|improve this answer

The question is limited by 'with jQuery' but it might help some to know that the jQuery code given in the best answer here does the following underneath...this works with or without jQuery:

function decodeEntities(input) {
  var y = document.createElement('textarea');
  y.innerHTML = input;
  return y.value;
}
share|improve this answer
var decoded = $('<textarea/>').html(encoded).val();
share|improve this answer
This didn't work for me. – Senseful Oct 16 '10 at 20:34
1  
the poster didn't test it. I get a blank – ekkis May 29 '11 at 1:33
This should not work at all. – Shuaib Nawaz Sep 16 '11 at 15:37
3  
sorry, the <textarea/> disappeared when copying! thanks @tim-cooper for the edit. – lucascaro Jan 17 '12 at 19:01
Nice solution, works well! – stian Jan 24 at 16:38

Use

myString = myString.replace( /\&amp;/g, '&' );

It is easiest to do it on the server side because apparently JavaScript has no native library for handling entities, nor did I find any near the top of search results for the various frameworks that extend JavaScript.

Search for "JavaScript HTML entities", and you might find a few libraries for just that purpose, but they'll probably all be built around the above logic - replace, entity by entity.

share|improve this answer

Like Mike Samuel said, don't use jQuery.html().text() to decode html entities as it's unsafe.

Instead try the Underscore.js utility-belt library which comes with escape and unescape methods:

_.escape(string)

Escapes a string for insertion into HTML, replacing &, <, >, ", ', and / characters.

_.escape('Curly, Larry & Moe');
=> "Curly, Larry &amp; Moe"

Note:

_.unescape(string) is missing from the documentation but it is working as seen here: http://underscorejs.org/underscore.js

// Functions for escaping and unescaping strings to/from HTML interpolation.
  _.each(['escape', 'unescape'], function(method) {
    _[method] = function(string) {
      if (string == null) return '';
      return ('' + string).replace(entityRegexes[method], function(match) {
        return entityMap[method][match];
      });
    };
  });
share|improve this answer
This actually deserves way more upvotes! Definitely my preferred solution. They included unescape in the docs by now, btw. – lethal-guitar yesterday

I just had to have an HTML entity charater (⇓) as a value for a HTML button. The HTML code looks good from the beginning in the browser:

<input type="button" value="Embed & Share  &dArr;" id="share_button" />

Now I was adding a toggle that should also display the charater. This is my solution

$("#share_button").toggle(
    function(){
        $("#share").slideDown();
        $(this).attr("value", "Embed & Share " + $("<div>").html("&uArr;").text());
    }

This displays ⇓ again in the button. I hope this might help someone.

share|improve this answer

You have to make custom function for html entities:

function htmlEntities(str) {
return String(str).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g,'&gt;').replace(/"/g, '&quot;');
}
share|improve this answer

The easiest way is to set a class selector to your elements an then use following code:

$(function(){
    $('.classSelector').each(function(a, b){
        $(b).html($(b).text());
    });
});

Nothing any more needed!

I had this problem and found this clear solution and it works fine.

share|improve this answer

To decode HTML Entities with jQuery, just use this function:

function html_entity_decode(txt){
    var randomID = Math.floor((Math.random()*100000)+1);
    $('body').append('<div id="random'+randomID+'"></div>');
    $('#random'+randomID).html(txt);
    var entity_decoded = $('#random'+randomID).html();
    $('#random'+randomID).remove();
    return entity_decoded;
}

How to use:

Javascript:

var txtEncoded = "&aacute; &eacute; &iacute; &oacute; &uacute;";
$('#some-id').val(html_entity_decode(txtEncoded));

HTML:

<input id="some-id" type="text" />
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.