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

the questions says it all :)

eg. we have >, we need > using only javascript

Update: It seems jquery is the easy way out. But, it would be nice to have a lightweight solution. More like a function which is capable to do this by itself.

share|improve this question
If you need this, there is a certain probability that you're approching the problem the wrong way. – AndreKR Dec 2 '10 at 19:32
What is the reasoning behind not doing this? – nuaavee Dec 2 '10 at 19:47

4 Answers

up vote 7 down vote accepted

You could do something like this:

String.prototype.decodeHTML = function() {
    var map = {"gt":">" /* , … */};
    return this.replace(/&(#(?:x[0-9a-f]+|\d+)|[a-z]+);?/gi, function($0, $1) {
        if ($1[0] === "#") {
            return String.fromCharCode($1[1].toLowerCase() === "x" ? parseInt($1.substr(2), 16)  : parseInt($1.substr(1), 10));
        } else {
            return map.hasOwnProperty($1) ? map[$1] : $0;
        }
    });
};
share|improve this answer
Neat solution. I have one question though - why are you checking for hexadecimal char code on line 5? – nuaavee Dec 2 '10 at 20:04
@nuaavee: Because character references can be either in decimal or hexadecimal notation:   =  . – Gumbo Dec 2 '10 at 20:17
Is this browser dependent? I mean do hex notations only apply to certain browsers? – nuaavee Dec 2 '10 at 21:42
@nuaavee: No, that’s basic SGML/HTML. – Gumbo Dec 2 '10 at 22:11

There's no such thing as only javascript, but this uses javascript and a browser:

function decodeEntities(s){
    var str, temp= document.createElement('p');
    temp.innerHTML= s;
    str= temp.textContent || temp.innerText;
    temp=null;
    return str;
}

alert(decodeEntities('<'))

/*  returned value: (String)
<
*/
share|improve this answer

There is nothing built in, but there are many libraries that have been written to do this.

Here is one.

And here one that is a jQuery plugin.

share|improve this answer

I spoke too soon; decodeURI is for URL encoding, not HTML/XML decoding. I don't think there is any built-in JS function, although you might be able to fake one by setting the innerHTML of an element, then retrieving the innerText subsequently (in theory that should work, but I wasn't able to make it work in my brief Firebug testing).

I think the real answer here is "use a JS library of some sort" (with my vote being jQuery).

share|improve this answer
1  
No, it won't. He's asking to unescape HTML. – SLaks Dec 2 '10 at 19:31
Will that work with HTML encoding like &gt;? I don't know but it seems from its name that it would not. – John Bledsoe Dec 2 '10 at 19:31

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.