Tagged Questions

60
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 ...
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 ...
0
votes
1answer
130 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
2answers
125 views

How to use two buttons to submit a form where one button does not run all functions

I have seen many similar questions on here but can't find one that addresses this particular issue. I am using the jQuery Validation plugin and the form plugin. I want to have one submit button run a ...
0
votes
1answer
165 views

submitHandler is an invalid label

Below is the code, I get an error which says that submitHandler is an invalid label $(document).ready(function() { $("#withdraw").validate({ rules: { amount: { ...