I have code in javascript:
var location = '"HCM - NYC (New York, NY)"';
td_Details.innerText = location;
Now I want to decode the text location to
"HCM - NYC (New York, NY)"
Please advice. Thanks.
|
I have code in javascript:
Now I want to decode the text location to "HCM - NYC (New York, NY)" Please advice. Thanks. |
||||
|
There is no specific function in JavaScript which will decode HTML entities, however you can assign an
This will work for any HTML entities, not just " edit: As pointed out below, you're half-way there, you're just using the wrong property. Change:
to:
For future reference, |
||||
|
To remove the " just use the following:
You may have actually meant to include the quotes in your output. To do so, do this instead:
|
|||||||||
|
location, that's a reserved word. It didn't worked too well for me. – Kobi May 3 '10 at 9:50windowobject. – Matt May 3 '10 at 9:53locationis not a reserved word. It is a client side object, so using it may be inadvisable but has no negative effects (unless you want to use the object). – Tomalak May 3 '10 at 10:00