ripped this from
    http://js.fleegix.org/ref#fleegix.string.unescapeXML

 function unescapeXML(s) {
    return s.replace(/&amp;/gm, '&').replace(/&lt;/gm, '<').
      replace(/&gt;/gm, '>').replace(/&quot;/gm, '"');
  };


But would still like to know if jQuery can do this.

2009/7/28 AJ Mercer <ajmer...@gmail.com>

> I am using SerializeJSON in ColdFusion which converts < to & lt ;
> is there a jQuery function that will turn it back to an angle bracket so I
> can set a form field value?
>
>
> --
> AJ Mercer
> Web Log: http://webonix.net
>



-- 
AJ Mercer
Web Log: http://webonix.net

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"cfaussie" group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to 
cfaussie+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to