Tagged Questions

The jQuery validation plugin is a plugin by Jörn Zaefferer for jQuery. Its main purpose is performing client-side and AJAX form validations.

learn more… | top users | synonyms

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 ...
31
votes
7answers
16k views

jQuery Validate - require at least one field in a group to be filled

I'm using the excellent jQuery Validate Plugin to validate some forms. On one form, I need to ensure that the user fills in at least one of a group of fields. I think I've got a pretty good solution, ...
22
votes
4answers
20k views

jquery checkbox value

If the checkbox values is checked then only i need to get the value as 1 else i need to get it as 0 ,how to do this using jquery $("ans").val() will always give me one right in this case <input ...
21
votes
6answers
7k views

jquery.validate.unobtrusive not working with dynamic injected elements

I am working with ASP.Net MVC3, the easier way to use the client validation would be enabling the jquery.validate.unobtrusive. Everything works fine, for stuff that's right from server. But when I ...
20
votes
4answers
17k views

jQuery validation: change default error message

Is there a simple way to change the default error values in the jQuery validation plugin? I just want to rewrite the error messages to be more personal to my app--I have a lot of fields, so I don't ...
19
votes
2answers
15k views

JQuery validate e-mail address regex

not too sure about how to do this. I need/want to validate email addresses by regex using something like this: ...
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 ...
18
votes
11answers
22k views

jQuery Validation plugin in ASP.NET Web Forms

I would really like use the jQuery Validation plugin in my ASP.NET Web Forms application (not MVC). I find it easier than adding asp validators everywhere and setting the control to validate field on ...
17
votes
9answers
17k views

jQuery UI Dialog validation without using <form> tags

http://bassistance.de/jquery-plugins/jquery-plugin-validation/ looks to be the best jquery validation plugin out there. I can't seem to get it working in the jQuery UI dialog though. This code works ...
14
votes
2answers
1k views

Knockout + mvc 3 + Validation

In the controller I would like to be able to get to the client validation rules of the model. I've attached some attributes using data annotations and would like to be able to pass something back to ...
13
votes
3answers
5k views

MVC3: make checkbox required via jQuery validate?

I want my "Agree To Terms" checkbox to be mandatory using jQuery validate, in an MVC3 project. I currently get server/client DRY/SPOT validation from "MS data annotation attributes" + "MS MVC3 ...
12
votes
10answers
4k views

JQuery 1.6 $('form').validate() not working in IE7 & IE8

UPDATE: I've created a new MVC 3 project with Razor HTML 5, then I've updated the project with NuGet at JQuery 1.6 and the validation plugin doesn't work any more, it does a post back every time and ...
12
votes
4answers
3k views

Add autoFill capabilities to jQuery-UI 1.8.1

here's what I currently have, unfortunately I cannot seem to figure out how to get autoFill to work with jQuery-UI... It used to work with the straight up Autocomplete.js <script ...
9
votes
6answers
6k views

jQuery Validation not working in IE7 + IE8

I'm trying to use the jQuery Validation plugin on a form on my website. The form works in FF, Chrome, Opera and Safari. It has yet to work in IE7 or IE8. Below is a simplified version of my code that ...
9
votes
3answers
2k views

Unrequired property keeps getting data-val-required attribute

This is the model with it's validation: [MetadataType(typeof(TagValidation))] public partial class Tag { } public class TagValidation { [Editable(false)] [HiddenInput(DisplayValue = ...
9
votes
4answers
595 views

Jquery Validation And Update Panel Together

I m trying to use jquery validation plugin but my form is in update panel. So even after applying the validation on submit the form it validates and shows the required message for hardly 2 seconds ...
9
votes
12answers
19k views

Using JQuery Validate Plugin to validate multiple form fields with identical names

I have a dynamically generated form with input fields with the same name (for example: "map"). I do not have the option of changing the field names or generating unique field names because the form ...
8
votes
5answers
332 views

jQuery unobstrusive validation on composite html control

I have the following control that represents Time : <div id="xxx"> <input type="text" name="xxx.hour"/> <input type="text" name="xxx.minute"/> </div> Because I want to ...
8
votes
2answers
2k views

Required validation only if the field is visible in asp.net mvc

I am using the [Required] attribute for the Clientside validation in asp.net mvc 3. The class looks as: public class User { [Required(ErrorMessage = "First Name is required")] public string ...
8
votes
4answers
9k views

Jquery Validation plug-in custom error placement

Using the jQuery Validation plug-in for the following form: <form id="information" method="post" action="#"> <fieldset> <legend>Please enter your ...
8
votes
1answer
4k views

jQuery Return elements where ID begins with a certain string

I have a lot of <span> tags like this <span id='val_Title'></span> <span id='val_Name'></span> I would like to return all the elements that begin with 'val_' and hide ...
7
votes
1answer
787 views

How can I customize the unobtrusive validation in ASP.NET MVC 3 to match my style?

The default validation in MVC 3 is based on jQuery Validation, which I can usually customize with something like: $.validator.setDefaults({ submitHandler: function() { alert('submitHandler'); }, ...
7
votes
1answer
472 views

jQuery Validate: How to validate a non-form element?

I have a form that has an attached map. Clicking on the map adds hidden inputs to a div in the form. I want a validation rule to check whether or not that div has any hidden elements. So far, I've ...
7
votes
1answer
1k views

JsTree conflicts with jquery.validate

I have a Jstree populating a list of items. When I click a node a partial is loaded with ajax. Everything works fine until I include the jquery.validate script to validate my forms. <script ...
7
votes
4answers
1k views

Is 42 a valid credit card number? jQuery validator thinks it is

We all know that 42 is the answer to everything, but it's news to me that it is a valid credit card number. Try entering '42' or '42176' into this jQuery Validation testing page and click OK. What's ...
7
votes
2answers
3k views

ASP.NET LinkButton / ImageButton and JQuery Validate?

We are introducing JQuery to an existing ASP.NET application and use the Validate plugin for JQuery to do the client side validation (we do not want to use the asp.net validators). Everything works ...
6
votes
2answers
166 views

How can I prevent a validation attribute from being generated?

I have a DateTime property in my model, but I'm only interested in the time part: public class MyModel { [Required, DataType.Time] public DateTime Time } In my view, I output it like so: ...
6
votes
1answer
2k views

MVC 3 Custom ValidationAttribute for CheckBoxFor firing twice on client-side

I'm going to lay out the code to explain the whole situation then pose the description of the problem: In my View Model I have a boolean property to track whether the user has accepted terms: ...
6
votes
4answers
3k views

jQuery validate plugin on DIV

I am trying to use the validate plugin on a div as shown in the answer to this question: <script type="text/javascript"> $("#pseudoForm").validate({ onfocusout:true, rules:{ ...
6
votes
3answers
1k views

jQuery Mobile and Unobtrusive Validation

I'm creating a jQuery Mobile (Alpha 3) based ASP.NET MVC 3 application utilizing the unobtrusive validation that comes with MVC3. When a page is accessed directly (no hash in the Url), validation ...
6
votes
2answers
6k views

jquery confirm password validation

I am using jquery for form validation. Rest is well except the confirm password field. Even when the same password is typed, the Please enter the same password. is not removed. My script is: ...
6
votes
3answers
4k views

jQuery Validate Required Select

I am trying to validate html select element using jQuery Validate plugin. I set "required" rule to true but it always passes validation because zero index is chosed by default. Is there any way to ...
6
votes
5answers
4k views

jquery.validation - how to ignore default values when validating mandatory fields

I am using jquery validation plugin to validate a registration form. Each text input field has instructions pre-filled as values in the input box ex: for a text-input box id='Name', the default ...
6
votes
2answers
5k views

How do I use jquery validate remote validation on a field that depends on another field in the form? How can I trigger a jquery remote validation call even when the input field is unchanged?

I have a form in which I am using remote validation to check if an email address already exists in the database. However, the catch is that on this form, the user can select between several different ...
6
votes
1answer
1k views

jQuery Validation plugin: checkbox groups and error message issues

I've put together a form using the jQuery Validation plugin, and all inputs are fine with working validation and error messages – except for checkboxes. I have two checkbox problems. The first is ...
6
votes
1answer
3k views

jQuery datepicker validation message issue

I'm using the jquery datepicker plugin at http://plugins.jquery.com/project/datepick with the datepicker validation plugin. <script id="frmValidation" type="text/javascript"> ...
6
votes
4answers
3k views

jQuery Form Validate() : How to setup default messages?

Until now, I've used jQuery validation plugin with previously defined fields. Now I'm working with a dynamic form. Fields have their validation needs mapped by its classes (e.g. " required "), but I ...
6
votes
4answers
2k views

jquery validate on elements not yet created

I'm wondering if it's possible to have the jQuery Validator plugin validate elements that don't yet exist in the dom when the rules are initially setup. Calling the .Rules("add", therules) method ...
6
votes
7answers
6k views

Can I copy/clone a function in JavaScript?

I'm using jQuery with the validators plugin. I would like to replace the "required" validator with one of my own. This is easy: jQuery.validator.addMethod("required", function(value, element, param) ...
6
votes
8answers
15k views

Using depends with the jQuery Validation plugin

I've got a form with a bunch of textboxes that are disabled by default, then enabled by use of a checkbox next to each one. When enabled, the values in these textboxes are required to be a valid ...
5
votes
1answer
224 views

Grouping errors in jQuery Unobtrusive Validation

I have 3 rows of checkboxes which a user must fill out. The validation is that he must select at least one checkbox in each row. So I've created the mandatory rule since as I understand it the ...
5
votes
1answer
647 views

RequiredAttribute with AllowEmptyString=true in ASP.NET MVC 3 unobtrusive validation

If i have [Required(AllowEmptyStrings = true)] declaration in my view model the validation is always triggered on empty inputs. I found the article which explains why it happens. Do you know if there ...
5
votes
4answers
814 views

disable submit only if valid

im using jquery with asp.net mvc. Im doing something like this so that the submit button becomes disabled when clicked. but if there are validation errors i dont want it to be disabled. ...
5
votes
2answers
3k views

Adding validation with MVC 3 & jQuery Validator in execution time

I have a form with validation rendered by c# when the page is loaded, the rendered fields like so: <input autocomplete="off" class="input-validation-error" data-val="true" data-val-number="The ...
5
votes
2answers
494 views

Placing error message for a checkbox array

I am using the Validation Plugin for jQuery and it works wonders. Except when I have a group of checkboxes...the error messages will display right after the first checkbox...like so: <tbody> ...
5
votes
2answers
6k views

jQuery validate plugin : accept letters only?

I'm using the validate plugin from http://bassistance.de/jquery-plugins/jquery-plugin-validation/ What i'm trying to find is a way to make some of my form fields accept letters only, no numbers, ...
5
votes
2answers
2k views

How does validation in ASP.NET MVC 2 actually work?

I am trying to trace through why my ASP.NET MVC 2 validation isn't working, but I cant find enough about HOW it works to be able to do this. I have followed the steps in this useful article by David ...
5
votes
2answers
4k views

Do not display validation error messages with jQuery Validate

I'm using jQuery Validate, but I really don't want to have any error messages whatsoever. Rather, I need to have red boxes around offending inputs/selects/etc. These red boxes were a piece of cake to ...
5
votes
2answers
3k views

jquery validation without FORM

How can I validate a bunch of fields that are not enclosed by FORM tag using jquery validate?
5
votes
1answer
4k views

How to manually trigger validation with jQuery validate?

I want to manually trigger validation including showing error messages with jQuery Validate. The scenario i am trying to accomplish is a form like this: <form> <input id=i1> <button ...

1 2 3 4 5 32