Feedback on: irt.org FAQ Knowledge Base Q243
Worth:
Very worth reading
Comments:
It is something I could really use, however it doesn't seem to do anything.
Could you please let me know whether I am missing anything?
Thank you.
Worth:
Worth reading
Length:
Technical:
Not technical enough
Comments:
It doesn't convert unicode entities...
Worth:
Not worth reading
Length:
Too long
Technical:
Not technical enough
Comments:
Nice try, but this not only returns the provided text without changing it at all, but it does so in a roundabout way. Try this to replace entities with characters.
var text = 'Pork%20%26%20Beans%A9';
var unescaped = unescape(text);
alert(unescaped);
Worth:
Not worth reading
Length:
Technical:
Comments:
This is for url encoding, not html entities. Needs to be renamed.