[jQuery] form not submitting

2010-01-12 Thread Ayicho
I am using this plugin in here: http://www.overset.com/2008/07/31/jval--jquery-form-field-validation-plugin/ The form works for all the fancy validaiton, but i cannot submit. after it passes validation, it stays on the same screen, it doesnt submit to my form post function? any ideas? thanks

[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-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 Casé

[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);

[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

[jQuery] Using jQuery Form Plugin - submitting special characters

2008-07-11 Thread hubbs
I am trying to send special characters through my form, using the form plugin, but they keep on getting converted to strange characters. e.g. Smart quotes from MS Word, etc. So, what I am wondering is, what do I need to do to fix this? I thought that submitting the form into an iframe with the

[jQuery] jquery form plugin submitting for multiple times after DOM is appended

2008-02-23 Thread pedalpete
I'm using the jquery form plugin from a form which is retrieved via ajax. I have multiple forms on the page. I'm using .livequery to make sure the form is only requested once, but didn't realize my problem is that the submit is actually occuring more than once. I've tried adding .livequery to

[jQuery] Form Plugin: Submitting async?

2007-08-07 Thread Arne-Kolja Bachstein
Hi there, I'm wondering if there is a way to submit a form async, as it seems that it's done synchronous and I cannot find any options regarding this. I am trying to upload a file using jQuery. I first tried jQuery.ajax, but this did not upload the file. So I tried jQuery().ajaxSubmit()