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.
|
the questions says it all :) eg. we have 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. |
|||||
|
|
You could do something like this:
|
|||||||||
|
|
There's no such thing as only javascript, but this uses javascript and a browser:
|
||||
|
|
|
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. |
|||
|
|
|
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). |
|||||||
|