Oli wrote on 11/4/2007 5:01 AM:
I tried to send a form via ajax. To send it, I first serialized it -
but after that there seems to be an encoding problem with my german
characters. I can see these strange broken characters in the firefox-
log.

I think the firefox log is just a false alarm; my guess is it doesn't correctly display the 
result of serialize.  To see what I mean, create an empty <input> called 
"serialize" then add this to your jQuery code:

        $("#serialized").val($("#frm_coupon").serialize());

You'll see the result as:

        Behandlung=Option+w%C3%A4hlen&betrag=Ausw%C3%A4hlen

The umlaut a (รค) is being encoded as C3A4, which is correct:

        http://www.fileformat.info/info/unicode/char/00e4/index.htm


- Bil


Reply via email to