Em Segunda 22 Maio 2006 23:34, Will escreveu: > Hi, > > I am a little stumped about a problem I am having with IE and > queryString() parsing paragraphs. > > Consider a "textarea" value that includes two line breaks: > > This is the first line > > Then I skip a line and add a second > > > When I pass the container form through queryString this textarea value > is translated differently in IE than in FF: > > IE gives: ...%20first%20line%0D%0A%0D%0AThen%20I%20skip... > > while FF gives: ... %20first%20line%0A%0AThen%20I%20skip ... > > > FF result seems to be the correct one to me. I don't really see that > there could be much I have done wrong. Any ideas? Has anyone seen this > before?
It looks like the old problem of line endings. IE might be considering DOS/Windows style (\r\n) while Firefox is considering Unix style (\n) line endings... Have you tried IE for Mac? :-) It might give you just "%0D" (\r)... :-) -- Jorge Godoy <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "MochiKit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/mochikit -~----------~----~----~----~------~----~------~--~---
