[jQuery] Re: Jquery form plugin can't find resolution

2010-02-15 Thread Marty Jones
Instead of doing $(this).ajaxSubmit(options); try $('#formId').ajaxSubmit(options); where #formId is the id of the form you are submitting. On Feb 14, 8:58 am, NHARRY nha...@live.co.uk wrote: I have a form that is loaded using .load it is then posted using the jquery form plugin. But it

[jQuery] Re: ajaxsubmit dosn´t send the response to the defined target

2010-02-12 Thread Marty Jones
I know this may sound silly but do you have a div element with a id of 'Preview'? On Feb 12, 5:43 am, Piet peter.fr...@sellbytel.de wrote: Dear all, I´m using ajaxSubmit to send a form (incl. fileuploads) to my server. Everthings works well but the response from the server will not displayed

[jQuery] Re: Autocomplete selection blanks out input field

2010-01-12 Thread Marty Jones
I had the same issue. The mustMatch flag causes the second request to validate the text that was set. Make sure that the selected input value can successfully be submitted to your ajax request and come back with a hit. If a match is not found the the text's input field will be cleared. On Jan