Most voted "jquery.validate" questions
It’s a jQuery plugin makes simple clientside form validation easy, while continuing to offer plenty of customization options. If the question is not about Jquery-Validate, do not use this tag, even if you are using Jquery-Validate in your project.
Learn more…16 questions
Sort by count of
-
4
votes2
answers483
viewsValidation of two fields with jQuery.validate and Dataannotations
Good afternoon, you guys, Next, I need to validate if one of two fields is filled, I tried to create an Attribute function with Validationattribute but not correctly validated, I think…
-
4
votes2
answers451
viewsValidate only one comma in input type ="text"
The problem I’m facing is that I can’t let the user type more than one comma into input (I am using ASP.NET with Behind in C#), but also I cannot use the input type="number" because the version of…
-
3
votes1
answer466
viewsHow to handle jquery validate error messages?
Here is the case: I have two inputs, the two are validated with the validate, one I need to show the error msg and change the border color, the other just need to change the color of the Boar,…
-
3
votes0
answers518
viewsJquery validate, some CPF numbers are not being accepted
I am using Jquery validate + a "add-on" code for CPF validation, but some CPF’s are not being accepted, I have tested the numbers in other systems and it worked, but in my system is not rolling.…
-
3
votes2
answers31
viewsHow to do more than one type="radio" field without losing value?
I am making a form and it will have two fields for selection of items, ie they are type="radio", only that the following problem happens when it selects an alternative of the first question ta…
-
2
votes1
answer693
viewsForce at least one field to be required
I have 4 Checkbox in my form HTML, I am working on validations only with Jquery.Validate, there is a way that I define that at least 1 of these checBox is triggered? Some property of validate? Or…
-
2
votes0
answers142
viewsWhy is the error message not displayed?
I am training a php code for user registration, where the required fields are validated but only the return of the login field using the command remote: it does not print the result, here are the…
jquery.validateasked 9 years, 1 month ago Ibueno21 21 -
1
votes1
answer436
viewsSubmit form with jQuery.Validation
I want to create a similar method to the required jQuery.Validate just to check if the field has been completed or not. Because the form is too big and can not be filled out at once so the user will…
-
1
votes0
answers80
viewsSelect2.js with jquery.validate?
How can I use Jquery.validate to validate select field with the plugin select2?
-
1
votes1
answer936
viewsUsing Jquery Validate in conjunction with Form Wizard
I’m putting together a step-by-step form. I did a test the Validate in the email field and, the verification of the email worked, however, Validate does not bar go to the next step, if the field is…
-
0
votes1
answer803
viewsUse jquery.validate to validate image dimensions
I’d like to know how to use the jquery validate to validate the dimensions of the image being sent. In my case, the image has to be 400px high and wide.…
-
0
votes1
answer96
viewsIgnore fields to be validated using jquery.validate. 1.8.1
I have a project at the company where I am interning and I have had some errors when validating inputs. Use ASP.NET MVC, Razor, and Javascript. When submitting all fields I get an error. Using the…
-
0
votes1
answer167
viewsValidate when the value is "Selected" Dropdownlist with Jquery.Validity
I have the following code jQuery: $("#aspnetForm").validate({ errorElement: 'span', errorClass: 'help-block', rules: { Dropdown: { required: true } }, messages: { Dropdown: { required: "Preencha o…
-
0
votes1
answer653
viewsvalidate dynamic field with validate
I’m trying to do a validation for a dynamic field with validate, but it only validates once. The dynamically added fields are not being validated follows below: $(document).ready(function() {…
-
0
votes0
answers447
viewsChecking that the CPF is unique with Jquery validate remote
I’m making a form that checks if the number already exists in a database. In my JS I use the Jquery Validate library $('#form').validate({ rules:{ cpf: { required: true, cpfBR: true, remote:…
-
0
votes1
answer252
viewsValidate Datepicker containing date only
I use Asp.Net Core MVC (Razor + Jquery Validate + Unobtrusive). I display in a Datepicker only the date part of a Datetime field through the following code in my Viewmodel: [Required(ErrorMessage =…
asp.net-mvc asp.net-mvc-5 validation jquery.validate unobtrusiveasked 6 years, 1 month ago Braytiner 176