Tagged Questions

3
votes
5answers
557 views

Jquery Form Plugin or Jquery serialization?

I am wondering what kind of advantages does the jQuery Form Plugin have over serialization? If I do choose to go with the form plugin can I use the new jQuery 1.5 features? Also does the Form ...
0
votes
2answers
67 views

$(this).ajaxSubmit is not a function

I am using rails 3.1.3, and jquery.form.js version 2.9.4, and jquery 1.7.1. I put some console print statements in jquery.form.js, so I can see (in the firebug console) that it has loaded. And I set ...
0
votes
0answers
29 views

Malsups Form plugin not working in Firefox

This form works in Chrome and IE, but in Firefox, when I click on the Submit button nothing happens. Firebug doesn't report anything. Here's my HTML: <script type="text/javascript" ...
0
votes
0answers
49 views

jQuery form plugin fails to catch response 404, 500 etc. if form enctype set to “multipart/data”

I'm trying to catch server errors (400, 404, 500) upon submitting my form via jQuery AJAX form plugin. (BTW I'm not trying to upload anything) After reading carefully I found out that "statusCode" ...
0
votes
1answer
201 views

jQuery Form Plugin - HTML inside JSON respone

I'm using Malsup's jQuery Form Plugin. I'm sending the form back to be validated and trying to return a JSON response similar to this: { "complete":0, "formText":"<div ...
0
votes
5answers
2k views

jQuery Forms - Ajax and normal submit the same form

I have a confirm step in one of my pages. Desired action: user clicks 'submit' and an AJAX request is made that does the appropriate action and returns a confirm dialog user 'confirms' and then the ...