Tagged Questions

5
votes
4answers
1k views

jquery form plugin, no error handling

It seems that there are no error handling facility in the Jquery.Form plugin, which is very frustrating. Even though the documentation says we can use the $.ajax options, I still cannot make use of ...
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 ...
2
votes
1answer
346 views

Jquery Multiple Forms and Form Plugin

I have a html like below wherein there are multiple forms. I generate this using JSTL so the number could vary depending on what is enrolled in my DB Each form has its own submit button. Basically, I ...
2
votes
1answer
1k views

jQuery Form plugin ajaxSubmit callback timing

I have the following code bound to the click event of a button: function submitForm() { var $submitOK = false; $('#form1').ajaxSubmit({ beforeSubmit: function() { ...
1
vote
0answers
231 views

JQuery form validation - validate form based on other form field

I"m using Jquery form validation which in the basic form looks like this $('#shopping_form').validate({ submitHandler: function(){ $.post("/url", { message: messageval}, function(data) ...
1
vote
2answers
383 views

jQuery Form Callback Compatibility Issue

I have a form on my website (http://www.jakelazaroff.com/#contact) that I submit with jQuery. The callback function for when the form is successfully submitted is supposed to make the formĀ fade away; ...
1
vote
4answers
4k views

Why JQuery Form submitHandler does not refresh its callback?

I am using the JQuery Form Plugin, the JQuery validation plugin and the jqTransform plugin. I have a hidden form which I make visible to add or edit stuff. Edit or Add actions trigger the next ...
1
vote
2answers
3k views

jQuery Form Plugin - How To Change 'target' (for response) Value

This is in reference to jQuery 1.3 and jQuery Form Plug 2.25. Hopefully this is a cakewalk for even an amateur, but I am clueless. var x; $('div#response').fadeOut(300,function() { // do ...
0
votes
1answer
22 views

I have been working with the jQuery form plugin and i want to upload multiple images

I want to select multiple images and then submit them into a folder. I also want to insert values such as the image file name and size into the database. Can anybody suggest how to do this? I ...
0
votes
0answers
35 views

Get data object values in jQuery Form Plugin

Hi I can't get the data field values which I set them in my JS call. var options = { type: 'POST', url: abspath + "ajax/send", data: { what: 'uploader_uploadfile', directory: uploaddir ...
0
votes
2answers
24 views

form plugin with mulitple forms | submit returns last form

I am writing my own form validation plugin. I am making to work with multiple forms on a page. when the form is submitted it is validated. The problem I am having is that in the plugin I can loo ...
0
votes
1answer
58 views

Json of jquery form plugin cannot be acquired

I will upload the file by using jquery form plugin, and question on the phenomenon of process of $.ajaxForm becoming timeout when the response data is json. Processing by the servers end is done ...
0
votes
2answers
63 views

Jquery form upload plugin: how to reduce it to one click?

I am using jquery form plugin to handle uploading files, This is my form, <form action="upload.php" method="post" enctype="multipart/form-data" id="myForm"> <input type="file" ...
0
votes
1answer
100 views

Post data not submitting properly with jQuery form plugin

Background: I'm working on a management page for musicians. Lets say the user creates an album, then uploads a song into the album. I'm using ajax posts with the jQuery form plugin. First, I worked ...
0
votes
1answer
358 views

Passing querystring parameter in ajax jquery form

I am trying to pass some parameters to an asp.net mvc 2 application. I am using the jqueryform plugin. I have 3 links that each pass a different type when uploading the file. I am using a hiddenfield ...
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
1answer
846 views

jQuery: Colorbox + Form - Accessing posted data + some miscellaneous questions

My goal is to submit a form in a Colorbox modal via ajax (that part is complete), and then take one of the submitted values (called 'percentage') and update a value in a table. I've got my code ...
0
votes
2answers
459 views

How to enable Jquery form validation function to be executed/fired before other functions?

I use Jquery form validation to validate form input data. There is a confirm check on submit of this form. . The code is: <script type="text/javascript"> function ...
0
votes
3answers
296 views

targeting a specific form with serialize()

Following on from my previous question, which was so quickly answered by Meder it wasn't funny, there's now an additional question that's popped up in the process of making a reusable jQuery form ...