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)

0
votes
0answers
17 views

Javascript not being used and object reference error on submit of form with attached model

I am working on a password reset functionality for a website that updates a users password in a backend database. I am successfully able to change a users password by entering a strong password i.e. ...
0
votes
1answer
3k views

jQuery Validation Plugin - adding rules that apply to multiple fields

I'm using the jQuery Validation plugin: I have several fields in a large form that I want to apply the same rules to. I've simplified the code for this example. This code doesn't work, but I want ...
12
votes
2answers
2k views

MVC3 Validation - Require One From Group

Given the following viewmodel: public class SomeViewModel { public bool IsA { get; set; } public bool IsB { get; set; } public bool IsC { get; set; } //... other properties } I wish to ...
3
votes
2answers
5k views

AJAX Form Submission in jQuery Mobile

I'm trying to submit a simple login form via ajax on a jQuery Mobile site but I'm having trouble. It seems that when I submit the form (via POST), the form parameters are getting added to the url. ...
-1
votes
0answers
48 views

JQuery-Validate stopped working

I recently moved from Windows/MS SQL/Adobe ColdFusion to Centos/MySQL/Railo. When I did, my jQuery-Validate scripts stopped working. There are no error messages, the validation simply does not run. ...
3
votes
2answers
6k views

How can I validate my jQuery script?

I am looking for an online jQuery validator. Not a script that will validate my forms but an online tool with which I can give it some jQuery script and have it return syntax errors and other useful ...
1
vote
1answer
29 views

jQuery Validate custom messages

I have an input that I want to display a custom error message on when the user doesn't fill it out. <input type="text" class="foo" value="" data-prop="foo" data-rules="{ required: true ...
1
vote
6answers
6k views

jquery validation of textarea integrated with ckeditor

I have a text-area <td><textarea id="event-body" name="body"> <p class="error"></p> That is integrated with CKEDITOR CKEDITOR.replace("event-body") And jquery validate ...
0
votes
3answers
32 views

Unobtrusive Client side validation in MVC4 not working

I have layout page with all scripts as shown below. <!DOCTYPE html> <html lang="en"> <head> <title>My Site</title> <link href="~/favicon.ico" rel="shortcut ...
0
votes
3answers
40 views

JQuery Validator - Success function not being called on valid submission

I am using JQuery validator from: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ I have written the JQuery that I need which validates correctly however the last part of my submit ...
29
votes
5answers
27k 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 ...
-1
votes
1answer
14 views

Validate multiple select list

I've to validate a form like this with jquery validate plugin: <form class="myform" <select name="Input" id="input1"> <option value="DO0" opt_numAdults="2" opt_numChilds="0" ...
0
votes
1answer
19 views

Validating several fields with the same name

I have an HTML form that I'm processing with Perl CGI, like so: <form action="process.cgi" id="main"> <input type="text" name="foo" class="required" /> <input type="text" ...
1
vote
1answer
71 views

jquery-mobile ajax runs one more time after every failed pass

I have my html page where people can sign up, which calls my php page for checks and inputs to db, If i get an error, for example someone does not select their gender it alerts the user as it should. ...
1
vote
2answers
29 views

jQuery Validation Plugin, phoneUS field is breaking form

I've been working on a simple form using the jquery validation plugin for browser-side validating, and for some reason unbeknownst to me it seems like the 'phoneUS' rule seems to be breaking the rest ...
0
votes
1answer
36 views

jQuery UI validation plugin adds class 'valid' to elements

I am using jquery ui validation plugin. I am validating only few fields(input elements) but when form is validated class 'valid' is being added to other input elements(in jqgrid) that I am not ...
4
votes
3answers
3k views

Error in jquery.validate.js in MVC 4 Project with jQuery 1.9

I created a new ASP.Net MVC 4 project using the template in Visual Studio 2012. After upgrading to jQuery 1.9, the login functionality breaks. Specifically, I get the error 0x800a138f - ...
1
vote
1answer
21 views

Validate a controlgroup with input of type=“radio”

I want to validate a form that have a controlgroup with inputs of type="radio" like this: <form id="sendMessageFormContainer" action="#"> @Html.ValidationSummary() <div ...
0
votes
2answers
385 views

jQuery Validate number that is not required in Opera

I am writing a (localhost) website that is planned to be used in the Opera browser (since my site is using HTML5). In part of the site I have a form and one of the fields is a number. I am trying to ...
1
vote
1answer
27 views

How to put error-label inside a stylized div?

Im using jquery validate... the option wrapper: "div" creates the "error label" inside a div nice... I want that div with a class like this: $(".selector").validate({ wrapper: "div" .... }) ...
0
votes
1answer
80 views

jquery validation plugin doesn't work consistently

I'm using Twitter Bootstrap for creating a HTML form, and JQuery validation plugin for validate it. My code is as below : HTML Part <form id="profile_form"> <div ...
0
votes
0answers
21 views

how to integrate jquery form plugin and jquery validation plugin

How to integrate form plugin http://malsup.com/jquery/form/ and jquery validation plugin http://docs.jquery.com/Plugins/Validation. I have been trying to integrate both the plugin but my problem is ...
0
votes
0answers
16 views

Jquery validate hides kendo-ui controls

I have a form which uses a kendo-ui numericTextBox @Html.LabelFor(p => p.Cost) @Html.TextBoxFor(p => p.Cost, new { @autocomplete = "off" }) I bind it, then, to make it work with jquery ...
0
votes
3answers
2k views

Why is <form> being given NoValidate attribute?

Having trouble getting jQuery Validate plugin to play nice. Model public class FooVM { [Required] public string Name { get; set; } } Layout <!DOCTYPE html> <html> ...
0
votes
2answers
33 views

jQuery validate not validating

I have the following form: <%@ taglib uri="http://www.springframework.org/tags/form" prefix="form" %> <%@ page language="java" contentType="text/html; charset=UTF-8" ...
0
votes
2answers
32 views

jQuery Validate doesn't remove error if value is auto-inputted via JavaScript

My HTML looks like this: <form id="mainform" method="post"> <input type="text" class="required" name="receiver" /> <span id="clickMe">Click me</span> <input ...
0
votes
1answer
44 views

Jquery validate submitHandler is not getting called

I have a form with two buttons a) Test - on click of the button a javascript function is called to verify a couple of credentials. b) Create - on click of the button a javascript function is ...
0
votes
1answer
31 views

jQuery validate multiple select dependent on another field

I'm using the jQuery Validate plugin and cannot get it to validate dependent upon another field. The same logic below WILL validate a normal select, but just not a multiple select. Here's my ...
0
votes
1answer
42 views

What is the proper way to activate jQuery validation on a form that was loaded via Ajax?

I have a WordPress/BuddyPress registration form, and I want to handle the form submission via an Ajax call, rather than direct page submission. I have the following code: <script ...
1
vote
1answer
201 views

How to make jQuery validation plugin work for drop-down in IE

jQuery validation plugin from http://bassistance.de/jquery-plugins/jquery-plugin-validation/ has an issue with drop-down in IE. I m using jQuery 1.7.2, Validation plugin 1.9.0 and jQuery UI 1.8.21. ...
2
votes
2answers
3k views

jQuery Validate resetForm() doesn't reset the onFocus validation

I have a form that is using jQuery Validate plugin for client side validation, and submits via AJAX. After the form is submitted, I would like it to reset itself. I have used the .resetForm() method ...
0
votes
2answers
23 views

Jquery Validation and updatepanel,

$(document).ready(function () { $("#formIsValid").val("false"); $('#form1').validate({ rules: { <%= CmyCd.UniqueID %>: { required:true }, ...
1
vote
1answer
84 views

input type = email jquery validate overriding mvc data annotation

I have the following property on my viewmodel: [Required(ErrorMessage = "Email is required")] [RegularExpression(RegularExpressions.Email, ErrorMessage = "Email is not valid")] ...
0
votes
1answer
38 views

How to make a separate jQuery Validation messagebox note appear compared to an appended one next to the field: at the same time

I want a asterisk to appear next to the field, and then a specific message to appear at the bottom of my form at the same time upon validation. Currently, I have these two versions: 1) works for the ...
1
vote
1answer
45 views

How to place jQuery Validation text to the right of the Title instead of to the right of the Input Field

I'm using jQuery validation to generate a custom message if validation fails. By default, the message is going to the right of the input field that it's validating. I want this message to instead ...
0
votes
0answers
29 views

On editing form shows error but on submit it validates, with error

I'm creating a webapp so a user can add a schedule for a employee for example. This project is made in MVC 4 but for this particular part I need jquery and jquery validation. When entering data into ...
0
votes
1answer
28 views

jQuery validation plugin errors as summary

I'm trying to create a validation summary using the jquery.validation plugin. What I have so far is this: // Validate order form before submitting it $('.order-material-form').validate({ ...
0
votes
1answer
36 views

input type file validation message not going away in chrome

I have a file upload field in my form and I am validating that field using jquery validation like the following: My Input tag: <input type="file" id=resume></input> Validation: ...
1
vote
2answers
64 views

jQuery validate username check

I want to validate if username exists in database using jQuery.validate so here's what I have so far: jQuery: $("#signupForm").validate({ rules: { username: { ...
0
votes
2answers
41 views

Validating Contact Numbers using JQuery Validation

I am trying to validate whether user is entering mobile number correctly. For this I have written the following regex which seems to be buggy. Mobile number can Optionally start with + can have ...
0
votes
0answers
47 views

Jquery Validator - focusout and submit

I can't figure out how to remove an error label on focus out when the next focused element is a submit button, without having to click twice for the submit to actually happen. I basically need the ...
0
votes
1answer
46 views

Validate elements outside a form

I have some elements (input, textarea, controlgroup) and a submit button outside of a form element... Can I validate those elements (client-side)? For instance, check if they are required and show a ...
1
vote
1answer
59 views

jQuery validation wont fire for dropdown/select lists

Yes this might be a duplicate of a million other questions like it, but for me it still doesnt work. According to the jQuery validation documentation, simply having the first default item with an ...
0
votes
0answers
40 views

Jquery validation, calendar with textfields to be validated

I'm creating a webapp so people can add the workingschedule for several weeks. I created a weekcalendar with a table and every cell contains a textbox. HTML example <form id="extension" ...
0
votes
5answers
58 views

Jquery Validation to validate URL

I am trying to validate URL in jQuery regular expression using below code. It is working fine with http://www and https://www var myVariable = ...
0
votes
1answer
29 views

Check for illegal character combinations with jQuery.Validate

Trying to check an input on an html form to ensure that it does not contain &# together in the string. I am using jQuery.Validate http://bassistance.de/jquery-plugins/jquery-plugin-validation and ...
-2
votes
0answers
38 views

jQuery-validate uses display language instead of region settings in Windows 8 (at least)

I have a Windows 8 system set to use (Irish) English as display language but set the regional settings to Germany (including German date format). When ASP.NET MVC passes values from the model to the ...
0
votes
2answers
34 views

Add Rules On Dynamic Form

I'm trying to add validation rules on a form that is dynamically populated, depending on a JSON response from a back-end. I'm using jQuery 1.9.1 and jQuery Validation plugin. function getItems(Id) { ...
0
votes
0answers
18 views

form html tagg is not added when Html.Partial helper is used

I'm rendering a partial view in a foreach loop inside a View. the partial view contains a container tag which I really need for jquery validation. the tag is shown for all the elements in the for ...
0
votes
1answer
53 views

Jquery Validation live validation of form by form element id and submit form by ajax

I have a form.I want to live validate this form with jquery validation plug-in.After finishing Validataion of the form i want to submit it by ajax.I want to validate every fields of the form by its ...

1 2 3 4 5 66