[jQuery] Re: Using jQuery Form Plugin - submitting special characters

2008-09-18 Thread Carlos André Oliveira
All strings are in the form, to submit this form I'm using the jquery.form plugin as the function below: function foo(){ var options = { url: 'model/serviceRelease.asp?id=5', target: '#divMessage', type: 'get', success: messageSuccess}; $('#myForm').ajaxForm(options); $('#myForm').su

[jQuery] Re: Using jQuery Form Plugin - submitting special characters

2008-09-18 Thread ricardobeat
XHR requests are known to have issues with special characters. Try using the funcion encodeURIComponent() around each string you send with Ajax. On Sep 18, 3:11 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi all, same to me!! > Please someone let me know about the solution! > > []'s > >

[jQuery] Re: Using jQuery Form Plugin - submitting special characters

2008-09-18 Thread [EMAIL PROTECTED]
Hi all, same to me!! Please someone let me know about the solution! []'s Casé On 6 ago, 08:57, Eita <[EMAIL PROTECTED]> wrote: > I know this is an old topic, but I'm dealing with the same problem as > Pablo and I didn't find a solution for that. > > If anyone has a clue to solve this behavior..

[jQuery] Re: Using jQuery Form Plugin - submitting special characters

2008-07-18 Thread Pablo Santiago
hubbs, Smart quotes from MS Word are a different charset (windows-1252). To have them correctly displayed you'll need to set your page to this charset and also check that your server accepts it (Firebug can tell you that). However, I'm dealing with a similiar problem... I'm using ISO-8859-1 both