Tagged Questions

61
votes
5answers
45k views

jQuery Validate Plugin - How to create a simple, custom rule?

How do you create a simple, custom rule using the jQuery Validate plugin (using addMethod) that doesn't use a regex? For example, what function would create a rule that validates only if at lease one ...
18
votes
1answer
2k views

How to use jQuery Validation plugin with metadata and the jQuery Forms plugin (with some xVal as well)

I've been doing some development using the xVal framework for .NET to link up some of the validation rules for models on the server side along with some client side validation using the jQuery ...
3
votes
5answers
560 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 ...
3
votes
4answers
117 views

Getting How a Form Was Submitted on submit event

I have a form that has a couple of buttons on it. Two of the buttons use ajax to submit the form and clear it so that the user can add multiple records before moving on. The last button is for when ...
3
votes
7answers
242 views

Why jQuery Form Plugin mixes the NULL and 0

I am using jQuery Form Plugin http://jquery.malsup.com/form/ to submit my form. Here is the code that is used to submit the form. var options = { beforeSubmit: showRequest, // pre-submit ...
3
votes
3answers
3k views

How to ajax-submit a form textarea input from CKEditor?

I am using CKEditor, jQuery and jQuery form plugin and I would like to submit contents of the CkEditor form via an Ajax query. Here is my code: <form id="article-form" name="article-form" ...
3
votes
2answers
166 views

jquery forms plugin noConflict problem

I am writing a bookmarklet in which I want to use the jquery forms plugin. The problem I am having is that a web page on which the bookmarklet might be used could be using a different js lib, which ...
3
votes
1answer
379 views

How to update the Options Object in the beforeSubmit function using jQuery Forms Plugin

I am refactoring my use of $.ajax to submit forms using the jQuery Forms Plugin. The API states that it is possible to pass any of the options passed to $.ajax to $.ajaxSubmit. I wish to modify the ...
2
votes
1answer
349 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
3answers
646 views

ASP.Net file upload with an empty posted files collection

I have an ASP.NET file upload control which sits as part of a form. The file upload control is on the content page while the form definition is on a master page across the site. I've added ...
2
votes
3answers
7k views

Modifying form values with beforeSubmit with jQuery ajaxSubmit?

I have a form I am submitting using jQuery's ajaxSubmit function from the Forms plugin. I'm trying to add a form name/value pair to the form data just before submission occurs. My plan is to modify ...
1
vote
1answer
81 views

File upload with jquery form plugin and mvc 3 is not filling in the target property with my partial view

I'm trying to setup a simple file/image upload for a web app I'm working on. To help, I'm using the jquery form plugin found here: http://jquery.malsup.com/form/ From the examples, it seems that you ...
1
vote
1answer
79 views

jQuery Form Plugin & jQuery DatePicker Not Working Together

I'm trying to use jQuery's Form Plugin. I'm using the JSON example here. For some reason the datepickers are not showing on the page, when I use the jQuery Form Plugin. In my jquery file I've got: ...
1
vote
1answer
99 views

jquery trigger: how can I trigger the browse file in the input when I click on a text link?

Following up on this post, I have another issuer - how can I trigger the browse file in the input when I click on a text link? Basically I want to hide the form but it will be triggered when you ...
1
vote
3answers
539 views

“Resource interpreted as Document but transferred with MIME type application/json” in Chrome Developer Tools

I have the following snippet, which uses the jQuery Form plugin to post a form to the server (in ajax). var options = { dataType: "json", success: function(data) { alert("success"); ...
1
vote
1answer
142 views

jquery.form plugin, ajaxSubmit and hooking when HTTP 302 received

I'm using the jquery.form plugin and its ajaxSubmit method with great success so far, but now I'm stuck with the way it handles HTTP 302. Let me explain: User submit a form through xhr using ...
1
vote
2answers
2k views

jquery getResponseHeader always returns 'undefined'?

I have a a form that I am submitting via ajax. I am using the jquery form plugin. What I am trying to do is get the 'Location' header which is returned from my server. I can see it in firebug. But ...
1
vote
1answer
202 views

jQuery Uploads a file, and then submits the form normally

I hope that I can make sense of this question. I currently am using jQuery Form Plugin + Validation which works great. But what I am trying to accomplish is, 1, Upload a temp-file for ...
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
3answers
3k views

Jquery Form ajaxSubmit not submitting

I am using the JQuery Form extension to submit a form with AJAX. I have the following code: var options = { beforeSubmit: showRequest, // pre-submit callback success: showResponse, ...
1
vote
2answers
385 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
1answer
1k views

JQuery Ajax Form and Dynamically created form elements not submitting

I'm writing a form that has some text input elements loaded dynamically when a select list is changed. The problem is that when I submit the form those elements are not sent in the data that is ...
1
vote
1answer
4k views

Reset form and clear cache after submit

Most browsers cache form values, so when the user navigates to another page and then presses the back button doesn't have to start over again. With the jquery form plugin this also happens after the ...
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 ...
1
vote
2answers
897 views

Modifying form data before submission

I'm using jQuery in conjunction with the form plugin and I'd like to intercept the form data before submission and make changes. The form plugin has a property called beforeSubmit that should do ...
0
votes
1answer
33 views

Response after posting using jquery.form is not added to target div

I am using jQuery Form to post data. I am sending some response from the server that I want present in the div specified with the target option. I can see in firebug that the response is actually ...
0
votes
0answers
31 views

jquery form plugin not working nicely with jquery validation plugin

Essentially what i thought i could do was put ajaxForm method from the form plugin in the submitHandler of the Validation plugin and I would be all set, this is not working however, I also tried just ...
0
votes
2answers
75 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
30 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
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
2answers
20 views

jQuery Form Plugin Passing in original form

I'm using the jQuery form plugin and trying to figure out why I can't use the find method within the success function. $('#signup-form').ajaxForm({ beforeSubmit: function (arr, ...
0
votes
0answers
70 views

jquery.form big size upload ie8

i have a little problem with internet explorer and jquery.form plugin. When i try to upload a file > 1MB in IE8 using jquery.form (ajaxSubmit) i get an error and the upload stops suddenly The ...
0
votes
0answers
94 views

Trigger Jquery UI Dialog with Jquery Form Plugin success callback

I am using server side form validation to post a response (in html) to a form submitted using Ajax but more specifically with the http://jquery.malsup.com/form/#getting-started plugin. I have tried: ...
0
votes
1answer
152 views

Grails. Submit to controller/action on select change

I would like to submit a form to an action on select box change (when an item is selected I need to update another select box and maybe other fields). The following code will submit the form to the ...
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
25 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
2answers
86 views

Jquery.form AjaxSubmit adding tags to response?

When I ajaxSubmit a form, the service returns a number. For some reason, ajaxSubmit seems to add a bunch of tags to it. form.ajaxSubmit(function(data){ alert(data); }); }); ...
0
votes
1answer
60 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
3answers
88 views

File upload with jquery form plugin

i have a form with input type="file". it submits using ajax (plugin jquery form). Server returns json response. There are html tags in json data: ...
0
votes
2answers
65 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
336 views

jQuery form plugin - Uncaught TypeError on file upload

there is no problem when I don't select any file for upload, when I just fill the other inputs than post form, It's working. but when I choose a file for image upload than post it, I'm getting this ...
0
votes
0answers
157 views

how to make ajax call within jquery success function (asp.net mvc)

I used jquery form plugin to upload and it worked fine, for suppose i want to delete the uploaded file, again i need to make a call to controller and update view again ? in success function of this ...
0
votes
1answer
198 views

Firebug not showing the response from jquery form plugin post submit

I am usinh jquery form plugin with this code $(".form1").live('submit', function(e){ $(".form1").ajaxSubmit(options); }); Now i see that firebug console shows all ajax requests so that i can ...
0
votes
1answer
52 views

Getting some problem with apply event to dynamic added form in Jquery

I am loading the form in dialog box via jQuery The code is like <form class ="form1" action="" method="post" enctype="multipart/form-data" > ... </form> I am using jQuery form plugin ...
0
votes
1answer
131 views

jquery forms file upload: why do field values reset?

I have a form with some elements like: <input type="text" name="maxResultsPlain" id="maxResultsPlain" class="number" value="10"> The form includes one input of type ...
0
votes
1answer
144 views

problem with jQuery.form plugin on second use

I'm trying to use the jQuery form plugin for the first time, inside a jQuery-ui tab. I'm able to load the form into the tab and submit the form. The request goes through successfully and the data is ...
0
votes
2answers
367 views

Callback function of ajaxSubmit doesn't fire

from File upload with jQuery and CodeIgniter (But no page refresh)@cbrandolino suggest me to use jQuery form plugin to solve my problem. It was working well except for one issue, the callbackfunction ...
0
votes
2answers
492 views

get value from jquery ajax response without setting async false

I'm using jquery form plugin to submit data to server. Before submitting I'm running server side validation via ajax. so the structure is function validateForm(formData, jqForm, options){ var ...

1 2