All Questions
210 questions
0
votes
2
answers
644
views
How to check whether a radio buttons and checkboxes are selected in form loop in jQuery?
I am making my first js plugin to validate the html form. I have figure it out for text fields but having some issues in choosing best way to validate radio buttons and checkbox. Since there can be ...
0
votes
2
answers
2k
views
Show error around radio buttons
The Jquery Validation plugin docs say you can validate that at least one radio button is selected. However, when trying to do so with some extra layout, I am not getting the error highlighting.
My ...
5
votes
5
answers
8k
views
Bootstrap-3: Input Group-Addon STRETCHES with jQuery Validation messages
I'm using Twitter Bootstrap 3 with jQuery Validate plugin, but for some reason when the validation error message pops up it STRETCHES my Input Group-Addon box and the icon.
NORMAL [NO VALIDATION]
...
0
votes
0
answers
38
views
Mozilla - Multiple mouse click when using jquery validation plugins submitHandler
Please refer : jqueryvalidation.org/validate
I am making an ajax request when the user clicks a button.
This works fine in Chrome . But in Firefox , the calls are getting aggregated.
If the user ...
3
votes
3
answers
13k
views
How to install jQuery Validate plugin?
I am a novice in jQuery plugin's usage. Now I am faced with adding a new plugin to my project.
It is the jQuery Validation plugin.
I downloaded the archive from the official site.
Content of this ...
0
votes
1
answer
1k
views
jQuery validate method is not triggered if form is submitted for the first time
So, I'm creating a custom plugin which uses jQuery validate as base. My idea is to create a plugin that will validate any normal form without having to create individual Jquery Validate setup for all ...
0
votes
3
answers
595
views
jQuery Custom Label Validation
I'm wanting to manipulate the positioning of the jQuery Validate plugin label positioning on submission.
When you view the form, press submit and you will notice the labels I have are being replaced ...
0
votes
1
answer
392
views
Jquery validation exactlength for two numbers?
I'm using the validator plugin for a form.
I would use the method exactlength but with 2 numbers.
I would check that the field is either 11 or 10 characters.
jQuery.validator.addMethod("exactlength",...
1
vote
1
answer
453
views
wrong values with Globalize.js decimal number validation
I'm trying to validate some numbers on my asp.net mvc5 application with globalize.js plugin for jquery...
When i enter number with , as decimal separator, everything works fine as it should be.
When ...
1
vote
0
answers
324
views
jquery validation Plugin - control custom range textboxes overlapping
lower: {
minlength: 1,
maxlength: 4,
required: true,
digits: true,
between: ['#pLower', '#pUpper']
},
upper: {
minlength: 1,
maxlength: 4,
required: true,
digits: ...
0
votes
1
answer
275
views
Dropdown validation does not work
it's my validation for chosen enabled select:
SellerDropDownList: {
required: {
depends: function (element) {
return $("#SellerDropDownList").val() == "-1";
}
}
}
...
-1
votes
1
answer
670
views
Incompatibility with formatter.js and jquery validation plugin?
I'm having an issue with formatter.js and a the validation jquery plugin.
<div class="formClear">
<label for="text-basic">
Phone<em> *</em></label>
&...
0
votes
1
answer
138
views
jQuery validation plugin not validating on form$.validate()
I have a page that has been using the jQuery validation plugin successfully to validate several text fields. There are several submit buttons on the page, and I have configured the validator as ...
0
votes
1
answer
849
views
Custom hidden field validation using jQuery validate plugin
I have a form:
<form id="actualForm" action="" novalidate="novalidate">
<div class="o-group">
<input placeholder="Title" id="name" name="title">
</...
0
votes
3
answers
4k
views
jQuery Validate Plugin doesn't work
I'm using jQuery and jQuery Validate Plugin on a test page, my code is based on validate demo
<html>
<head>
<script src="http://jquery.bassistance.de/validate/lib/jquery-1.9.0.js"&...