Tagged Questions
1
vote
1answer
22 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
0answers
10 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
0answers
16 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
2answers
25 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
32 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 ...
0
votes
1answer
22 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
34 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
24 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 ...
0
votes
1answer
27 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({
...
1
vote
1answer
43 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 ...
1
vote
2answers
58 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
31 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
39 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
0answers
25 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 ...
1
vote
1answer
53 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
37 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
51 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
25 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 ...
0
votes
2answers
30 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
1answer
65 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
1answer
38 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 ...
0
votes
1answer
34 views
jquery dynamic validation rule ignoring message
Using the JQuery Validation plugin, I have composed the following, but find that the default validation message is displayed rather than my custom message (I have used the constant in other ...
1
vote
4answers
70 views
jquery validation plugin working ok first time you validate but not subsequent times
I have the following form which is added to a page via ajax
<script>
$(document).ready(function() {
jQuery.validator.setDefaults({
errorPlacement: function(error, ...
-1
votes
0answers
17 views
How to make Redactor & 'jQuery validate' work together
I'm trying to validate my forms with jQuery validate plugin. The problem is that a Redactor textarea with class='required' always validates, although there's nothing in the field. Probably caused by ...
1
vote
2answers
41 views
jQuery Validator Does Not Validate Input File Type
I've written a upload form and I want users to be able to upload only images.
I've decided to use jQuery validator in order to make sure that users cannot send an empty form an can only upload images. ...
0
votes
2answers
62 views
Validator.element() triggers a stackoverflow error when validating inside a jquery ui accordion
I have a form that's displayed in several parts by using a jquery ui accordion widget. I'm trying to create validation feedback so that if one of the accordion tabs contains any input that is ...
0
votes
2answers
127 views
jQuery validation - Textbox requires data if checkbox is checked
I have a checkbox - HasRaffle that will require a textbox - RaffleItem to contain data if HasRaffle is checked. How would I do this? I've never done my own jQuery validations before. This is what I ...
1
vote
1answer
49 views
How can I trigger validation to occur on jQuery UI datepicker once a date has been selected?
I have some client-side validation that checks to ensure that the EndDate is greater than or equal to StartDate. The validation works, but it's not firing as I would like it to. I would like it to ...
-2
votes
2answers
69 views
jquery validator with tooltip
Is it possible to integrate the jquery validator with a some sort of tooltip?
Here is what I am trying to do:
I have a contact form, onfocus of any fields, I want a real time tooltip to appear that ...
1
vote
1answer
43 views
jQuery datapicker allow partial date like “05/”?
I have a Date of Birth field rendered as a textbox attached to a datepicker. Here is the html output:
<input class="text-box single-line hasDatepicker valid" data-val="true" data-val-date="The ...
0
votes
2answers
70 views
Issues With Jquery Form Validations
I am trying to do form validation using Jquery, unfortunately neither I am not able to display the null field empty message nor I am not able to prevent user from leaving fields blank.
I am using the ...
0
votes
1answer
195 views
Jquery Validation Plugin not working in Jquery ui custom dialog box
I am using validate.js library given on this link http://jzaefferer.github.io/jquery-validation/jquery.validate.js to validate the text fields of pop-up form made using Jquery custom dialog box.
...
-1
votes
1answer
35 views
Debugging Unotrusive Validation (client side)
I am using unobtrusive validation. My form is rather complex and on cursory look there's no "visible" validation error.
However when I call:
$(valForm).valid();
The result is false. I need to ...
-5
votes
0answers
99 views
bootstrap validation in internet explorer [closed]
I am developing a site using bootstrap. It goes all good in firefox, internet explorer and chrome but in internet explorer bootstrap jquery validation isn't working. Anybody has any idea Why?
0
votes
1answer
68 views
appending to showError function in jquery validation and jquery.validate.unobtrusive
I'm using a third party tool that uses
jquery.validate.min.js
jquery.validate.unobtrusive.min.js
when i enter the following which shows a messagebox. The custom validation on the tool validatiion ...
0
votes
1answer
70 views
jQuery Validate on form that is destroyed/recreated with Knockout
I have a form that is within a jQuery UI dialog that is created and destroyed every time I open and close the dialog (as part of a knockout custom binding). The problem is that jQuery validation ...
0
votes
1answer
84 views
Make multiple fields required if one option or another is checked jQuery Validate
In my form, new fields appear depending on which radio button option is required. I would like to validate those fields only if the corresponding radio button is required.
If the first option is ...
0
votes
1answer
67 views
jQuery Validation PlugIn issue - form will not submit
I am using the jQuery validate plug-in for the first time based on the instructions here and it's not working. When I try to submit the form with the required field empty, I see the error message, ...
-1
votes
2answers
74 views
How to move the location of jquery validation error message to one box
I am using jquery validation lib. I want to show form validation error messages at top of the form.
0
votes
1answer
114 views
show and hide div with jquery while using validate plugin
I'm having issues trying to get the fadeIn/Out method AND the form submission to happen within the same script.
Often what's happening is that one will work, and the other won't. I've worked on this ...
0
votes
0answers
46 views
Combining jQuery validate and jQuery Real Person
I'm using jQuery validation to make sure all my required fields are filled in, however I was getting a lot of bot spam and want to use something like jQuery Real Person as a captcha system .
How do I ...
0
votes
3answers
67 views
jQuery validation - required working but accept not
im uploading an image and trying to validate it before with jquery. Here is my code:
<script type="text/javascript" ...
2
votes
2answers
100 views
JQuery validation not working on webmatrix when locally hosting?
Ok so I know it validates correctly as it works in JSfiddle, but when I try to run it locally for some reason it is not validating. I have nothing happening with the POST of the form yet. Also, I am ...
0
votes
2answers
74 views
Ajax is bypassing JQuery validation
I currently am using the Jquery validation on my form. However I am also using ajax to submit. When I click submit, without filling out the input the form goes through despite the fact I put ...
0
votes
2answers
49 views
Trouble doing validation through jquery
I have been searching around and do not understand why my code is not working. Even tried jsfiddle to see if it works but not happening for me.
To make things clear I am using twitter bootstrap, and ...
0
votes
2answers
50 views
JQuery validator not working
I have zend form in my html:
<form action="" method="POST" id="orderForm" class="cmxform">
...
<td valign="top"><br /><label ...
0
votes
3answers
61 views
Using JQuery Validate to see if atleast one set of radiobuttons is checked yes
Have a simple form. That I need to validate that atleast one of the contacts Has Local radio button checked Yes. How do I do that with JQ Validate??
Here is the fiddle
...
1
vote
3answers
156 views
Open modal when jQuery validation remote fails
I'm using the jQuery validation plugin, and it works great.
I want to be able to both display a message and trigger a modal (alert() in the example) whenever the remote ajax fails. I can't figure out ...
19
votes
3answers
11k views
jQuery Validation plugin - Validating hidden inputs and not visible?
How would I validate hidden inputs and not visible text inputs with jQuery Form Validation plugin? The problem is, that I'm using auto-suggest plugin, which generates a hidden input for selected ...
93
votes
9answers
76k 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 ...



