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 (1)

2
votes
0answers
76 views

JavaScript Date Format Normalizing

I'm creating an HTML 5 form for mobile. I'm using jquery-validate to validate my form. My problem is in relation to date pickers across different phones. They aren't consistent in the date format ...
0
votes
1answer
118 views

how to apply validation on dialog form using jquery validation plugin?

i m trying to open a dialog on click of a button and opened dialog contains a login form including username and password and signin button.here is my code of html to open a dialog: HTML CODE: ...
-4
votes
2answers
72 views

jquery validation form dosent work [closed]

I have a registration form with some field requirements in the form written in php and im trying to add a validation plugin to it, but the plugin dosent work, im not getting any errors. <script ...
1
vote
1answer
122 views

change default behavior of unobtrusive jquery validation to validate on onkeyup?

I'm using micrososofts unobtrusive jquery validation with MVC4 / razor and the default behavior appears to be to first validate on click of submit, and then after that validate onkeyup. I'd like to ...
0
votes
1answer
96 views

Jquery Validation on Dom not displaying message

I stumbled upon some code that has jQuery validation which is triggered after an ajax call that adds items to the DOM. The validation is working but the message is missing. just the field is ...
1
vote
1answer
111 views

jquery validation … validate method not working but not throwing error

I have a popup notifyDa and also the popup displays 3 different conditions.. This is working fine.The problem i am facing is in validation. validate method is not working. And also apart from ...
0
votes
1answer
284 views

using asp.net mvc3 with jquery.validate.unobtrusive.js to validate form and changebutton

I am working with mvc3 and use model validation like this: public class ColumnVM { [Required(ErrorMessage = "Required")] public string Name { get; set; }} I want to do clientside ...
0
votes
1answer
53 views

JQuery Validate dynamically change ignore rule

I have a simple validate block like this: $("#myForm").validate({ ignore: ":hidden" }); When the user clicks a certain button, I would like to change that ignore rule to ignore: [] , then ...
-2
votes
1answer
74 views

JQuery validate plugin errorPlacement passes in an error object when a string is expected

I'm having a similar problem. Shouldn't "error" be an error string? When I alert the error it is an object([object Object]. When I take out the "errorPlacement" block it works fine. I tried ...
1
vote
2answers
109 views

Dynamic new rule validation not working

We recently decide to migrate to jquery 1.9.1 and since our project is in ASP.NET MVC 3, it has the jquery.validate and jquery.validate.unobtrusive. Everything worked fine and the default integration ...
3
votes
2answers
116 views

Date validation allows invalid dates

Using this model: public class Holiday { [Required] public DateTime From { get; set; } } With this view: @model Holiday @using System.Web.Optimization @{ ViewBag.Title = "Request"; } ...
0
votes
1answer
32 views

manually updating validity of the elements

I'm using jquery.validate and jquery.validate.unobtrusive and I wonder how can I manually make certain elements "valid" or "invalid" from the javascript code? I'm trying to modify ...
1
vote
3answers
164 views

MVC disable unobtrusive validation for specific validator

I'm currently building a MVC4 project which uses unobtrusive validation through data annotations. I have a specific field, "PostalCode", which is both [Required] and has a [RegularExpression] ...
0
votes
1answer
62 views

Multiple field validation based on other field

My set up is that I have one field called claimaint_rep, now when that value is Yes I want to have multiple fields become required. Now I'm using jquery validate. My code currently is: ...
-1
votes
1answer
44 views

Jquery validation library

remote: { url: 'ajax_php/admin/checking.php', type: "post", data: { username: function() { return $("#username").val(); } } ...
0
votes
1answer
114 views

jQuery Validate - Two separate validations, one form

I am trying to create a simple application form with two buttons (save and submit). I am using the jQuery validate plugin. In order to submit the form the applicant must actually fill out the entire ...
0
votes
4answers
133 views

jQuery validator does not respond

I've tried to use jQuery validator, and it seems like it just does not respond. I'm trying to validate whether an image uploading form is not empty. I've added the if(jQuery) section in order to check ...
-5
votes
1answer
65 views

Contention with 2 jquery plugins [closed]

I am new to web development and am having a problem with 2 jquery plugins which i'm using on a single page. The 2 plugins\javascripts are: ...
0
votes
1answer
307 views

Jquery Mobile Validation error position & selects

I added bassistance jQuery validation to a form on my jQuery Mobile project. It works perfect, except for the errors show up inside the text inputs and not below them. I know I could use ...
1
vote
1answer
189 views

how to use jquery validate to compare two dropdown value

I have two dropdown (start time & end time) that I want to validate using jquery validate, making sure the end time is greater than start time, but I can't get it to work. It is always showing ...
0
votes
2answers
109 views

jQuery validate not working properly

I need this validation to fire when the div button is clicked. If the validation is successful, I want it to alert "is good". Unfortunately, although validation fires and all rules are checked, it ...
0
votes
2answers
50 views

jQuery Validate ignoring rules

This problem is holding me now for a while. It's probable an easy thing but at this hour I'm not seeing it. HTML & JavaScript is included below. jQuery 1.8.3 is loaded before jQuery validate and ...
-2
votes
1answer
54 views

The field must be a number - override this message [closed]

I have int number value. When I write incorrect value for this field a get a message: The field number must be a number How override this message to change language?
-1
votes
1answer
77 views

jquery validation invalidHandler

I am using jquery validation for my form and i have set an invalidHandler that show an error on the top of form and scroll to that message. I am trying to hide that message when field validation is ...
1
vote
2answers
77 views

How to get some revealing module code to only run after DOM ready?

We use the revealing module pattern to organise stuff into "namespaces". Some of the initialisation code (for the jQuery Validation plugin) should only be called after document load. ...
0
votes
1answer
56 views

Prevent unobtrusive validation on specific form

I have a form which I want to use with jQuery unobtrusive validation. Everything works fine. But I also have other forms on that view, like a search form, login form, etc., and the plugin attaches to ...
3
votes
1answer
146 views

Unobtrusive Validation messages don't work on inputs without name attribute

Our credit card processor (Braintree Payments) requires that we not use the "name" attribute on credit card fields (card number, expiration date, and CCV) to obviously make sure they don't get POSTed ...
0
votes
1answer
33 views

modifying ModelState on the client

So here's the problem: I have a form and a property adorned with [RequiredAttribute] altough initialy it's hidden on the form. There's a checkbox. When it's clicked it shows the element. So I wanted ...
0
votes
1answer
162 views

How do I successfully apply jquery validation rules to a jQuery autocomplete “input” field?

How do I successfully apply jquery validation rules to a jQuery autocomplete "input" field? To further explain, in the example, below: jquery validation works as expected for the "state" input ...
0
votes
1answer
368 views

How to validate uploaded file with jquery plugin?

I am using this script in wordpress. Here is my code: <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script ...
0
votes
1answer
44 views

jquery validation for lot of related checkbox / texfields with dependency-expression

I have multiple checkbox / textfield related one to each other, PHP generated, with different IDs and names: <ul> <li> <input type="checkbox" name="cb_1" id="cb_1"> ...
0
votes
1answer
48 views

Is server side validation required, when data is posted through ajax?

In my project, I am storing FORM data by POSTING it to one php file. I am sending data through ajax on buttonclick and i am doing client side validation, so anyways i can not do database insertion ...
0
votes
1answer
55 views

jQuery validation dependency expression with numeric field

I have this snippet: <input type="checkbox" name="sal_cart" id="sal_cart"> <input type="text" name="sal_unit_price" id="sal_unit_price" class="required"> sal_unit_price can be numeric ...
0
votes
3answers
57 views

Why HtmlHelper would skip validation attributes

Why @Html.TextBoxFor and other helpers would skip jquery.validation attributes and create elements without those? Am I missing some references or something? It's MVC 3.0 project. If I add them ...
0
votes
0answers
244 views

checking condition using jquery.validate.js and jquery.form.js

In my form there have a lot of fields including country, state. In country dropdown all countries listed, when i select US it will displays its states in state dropdown(here stateid is the id of ...
0
votes
1answer
259 views

Custom Error Message Text with Jquery Validate Plugin

Need to copy the Custom error message text from a span where text is coming from CMS. It is basically a need to show a custom localized error message. Code works when you submit the form but as soon ...
0
votes
1answer
73 views

JQuery Validation plugin issue

I am using the jquery validate plugin. It is a simple form on my site which is in MVC 4 <form name="profileForm" id="profileForm" action="@Url.Content("~/myprofile")" method="post" ...
-2
votes
2answers
69 views

Validation error message not showing properly

I don't know how to explain it. so just check out below image. I am using charishma Admin theme. Downloaded from here: https://github.com/usmanhalalit/charisma I am using ...
0
votes
1answer
238 views

Server side <form> tag prevents jQuery validate plugin validating

When the submit button is clicked in this code with nothing in the name field, the validate() function should kick in and say "This field is required". This works fine, until I add the server side ...
-1
votes
2answers
147 views

Pass jQuery validate error messages to a single box (div)

I've search a lot but still haven't figured it out... How do I pass various error messages to a single box (div) instead of highlighting them nearby the relative fields. Let's say, I've got 4 required ...
-1
votes
2answers
165 views

Remote action method not being hit using jQuery Validate

I am using ASP.NET MVC4 and jQuery Validate and jQuery Validate unobtrusive. I have various elements on my form, but I only need to have one element validated. The other elements DO NOT need to be ...
0
votes
1answer
94 views

validate end date equal to greater than start date

I want to check whether end date is greater than or equal to start date, with jquery validate. It is validating end date greater than start date, but it is not permitting end date equal to start date, ...
0
votes
1answer
55 views

jquery validate url, disallowing protocols, subdomains or query strings

I am using jQuery validate on url's in my project and want to prevent the user from entering any protocols (http://, ftp://, www, etc.), subdomains or query strings. I just want a clean domain like ...
1
vote
1answer
34 views

Bug in jQuery validate script with last elements?

I am struggling with jQuery validate script where I have a form with many elements makred required and it seems to ignore the very last one - unless I focus in it before submit. I created a much ...
0
votes
1answer
125 views

jQuery Validate select on change

I am using jQuery Validate plugin in my forms and I need to validate selects when users select any option to display the error immediately, now I'm using 'onfocusout' option for inputs and textareas, ...
0
votes
0answers
121 views

JQuery: Chosen plugin not working with Validate plugin

I have read all the posts I could find on here about Chosen and JQuery Validate. My question was not answered. I have a form with a Chosen select field that has a required attribute. The validation ...
0
votes
2answers
161 views

Validating login dialog using jquery and ajax

I need some help with validation using ajax. My login dialog works but it does not handle what happens on succes or validation errors are present. I am not sure how or where I actually create the ajax ...
-1
votes
1answer
179 views

Error message displaying every time. Using Jquery validator in MVC Project

My Html Code as well as Javascript code is follows. <h2>Register</h2> @using (Html.BeginForm()) { @Html.ValidationSummary(true) <fieldset class="acloginform"> ...
0
votes
1answer
88 views

Is there a way to mingle validations in jQuery and CodeIgniter

If we want to include jQuery Validation plugin as well as code igniter form_validation class at once we have to define the validation rules in both jQuery validation script as well as in CodeIgniter ...
0
votes
0answers
177 views

ASP.NET MVC Validation Messages in Popup

The below Image is the Output/PrintScreen of my WebForm. You can see in red characters, they are Validation messages - And those messages are displayed in a <div></div> tag. Validation ...

1 2 3 4 5 66