0
votes
2answers
23 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
17 views

require.js, jquery.validate in method, any page can call

define(function () { return { Setvalidate: function (form) { form.validate({ highlight: function (element, errorClass) { $(element).addClass("redBorder"); ...
0
votes
1answer
30 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
22 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
25 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
42 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
36 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
1answer
194 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 ...
0
votes
2answers
173 views

Checking if user exists jquery validator,ajax and codeigneter

I m trying to check if a username exists or not but even if the username doesn't exists it keeps saying "Username already exists" this is my javascript code: $.validator.addMethod("checkUsername", ...
0
votes
1answer
53 views

Issue using remote method in jquery validation

I'm following this article in order to validate my form My problem is when I use the remote method, e.g. remote: "check-username.php" Since the documentation for remote method is not so clear for ...
0
votes
7answers
150 views

Validate user input for extra long words in textarea

I have a problem here with validating user's input in textarea. A user is suppose to enter his description in one of the textarea feild in form. But some people just put the random text like ...
0
votes
1answer
50 views

parseFloat gives NaN for swedish culture

I am using jQuery Globalize plugin along with jQuery validation. For the valid swedish number 5.000,00 parseFloat function gives NaN What could be the bug in below code/library? <script ...
-1
votes
1answer
388 views

Why “Uncaught TypeError: Object [object Object] has no method 'validate' ” when I have included jquery.validate.js

My code: @model ColumnVM @{ ViewBag.Title = "AddColumn3"; Layout = "../Shared/_layout2.cshtml"; } <script type="text/javascript"> $(function () { ...
2
votes
0answers
73 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 ...
-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
2answers
49 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 ...
1
vote
2answers
76 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
122 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, ...
1
vote
1answer
117 views

jQuery validation addmethod - how to return defferent language messages?

I have a custom method for bassistance jquery validation plugin that returns a message but the problem is that I would like to return default plugin message in different languages by simply adding the ...
1
vote
1answer
46 views

jQuery Validate dependency-expression

I'm trying to set up a jQuery Validate dependency-expression so that users need to either use the text field OR upload a file, but this code is not working: both fields are always required. I'm ...
0
votes
1answer
66 views

Why does jQuery validate returning 1 for true on a non-async remote request, and how do I fix it?

I'm using the jQuery.validate library to check if a form field matches an array of data. Here's the documentation for the remote method. When it returns true, jQuery.validate displays a 1 in an ...
0
votes
2answers
66 views

jQuery required( dependency-expression ) is not working properly

I am using jquery validation plugin. When I was using required( dependency-expression ) i noticed that required( dependency-expression ) are not working properly. as mentioned that i tried for ...
0
votes
0answers
420 views

jquery validation error in Asp.net MVC - unable to get value of property 'call' : object is null or undefined

I'm trying to do some validation checks on the client side but my ASP.NET MVC application fails even before opening the index page. I get the error Microsoft Jscript runtime error: unable to get value ...
1
vote
1answer
75 views

JQuery Validate with custom selectors and logic

Is it possible to use JQuery Validate with custom selectors and validation logic? Something in the vein of the following: $('#myForm').validate({ rules: { '[myattr="foo"]': ...
0
votes
1answer
104 views

JQuery validation plugin error placement does not work

I validate a form with the JQuery validator plugin. However, I want to place the error output at a specific place. I tried the Error Placement from the Validator documentation <div ...
2
votes
2answers
38 views

How to add punchin time and actual time

I have two time,punchin time and actual time. The get out time is the sum of these two. You can see my code on http://jsfiddle.net/FHhDQ/5/ $( "#btn" ).click(function() { $( "#dialog" ...
0
votes
2answers
60 views

errorplacement not allowing jquery validate to work

This is my first time using javascript in a website. I have very low understanding of the language and rely very much on tutorials and reading through other people's questions/solutions. I have a ...
2
votes
1answer
54 views

jQuery validation plugin checks inputs between different rows

I am using jQuery validation plugin to check values from two dynamically generated rows. But I am confused by the jquery selection. Below is my broken demo and I appreciate all inputs. My HTML table ...
1
vote
1answer
211 views

jQuery validation plugin not working after JQM page change

I'm currently working on a mobile html5 project. I'm using this jQuery validation plugin to validate a login screen with a form. I'm also using jQuery Mobile, with the single-page template (I have ...
0
votes
1answer
300 views

jQuery Validation conditional dependency: ensure text input matches value if radio button checked

I have a some form elements that follow a format like this: <input type="radio" name="test" value="A"> <input type="text" size="3" name="weightA" id="A"><br> <input type="radio" ...
-7
votes
1answer
542 views

Jquery validate plugin method for mobile phone number [duplicate]

So, i have phone number, and i need to validate it with jquery validate plugin. I needs regexp for phone numvber. Number like +7(999) 999-9999
1
vote
1answer
170 views

jQuery Validation giving error with every character entered

I'm using jQuery Validator on a form on my site. It is functioning properly, but every keystroke results in an error: Uncaught TypeError: Object #<error> has no method 'call' I am ...
1
vote
2answers
155 views

jQuery validation plugin checks drop-down, scientific, and elements with similar names

This post is based on my previous question. I had a form with three sections, and use back and next button to hide and show users only one table section at a time. In addition, the next button also ...
1
vote
2answers
161 views

jQuery button validate part of a form at a time

Sorry if I did not explain my problem clearly. I have a form with multiple tables for users inputs. I use next and back buttons to hide and show different tables in order to guide users. Now the ...
0
votes
3answers
255 views

jquery validate either checkbox or input field

I had a form that can send message and user need to select group from checkbox or manual input the group name. Now i want validate this form, if user not check any checkbox or insert any value in text ...
-1
votes
1answer
305 views

TypeError: $(…).valid is not a function in jquery validation

The below code is working fine on standalone but throwing javascript error when jsp is deployed on the server.I have included jquery.validation.js for .valid method. if ...
0
votes
2answers
318 views

Android + PhoneGap + jQuery Validate - not firing

I'm using jQuery Mobile with jQuery Validate. I have multiple forms that post with ajax serialize once all pages have been completed. The 'next' button below works on iOS and Android when accessed ...
0
votes
2answers
266 views

JQuery: form validation - not getting any results

I am trying to implement the simple form validation plugin found here: http://www.jquery4u.com/forms/basic-jquery-form-validation-tutorial/ but I cannot seem to get it working. I have a simple form: ...
0
votes
1answer
125 views

Renaming a PHP file enables jquery form validation?

This is a very odd problem. I have a signup form, signup.php, which uses the jQuery validate plugin to validate it. Twice in last 2 months, the form serialization abruptly failed (see code below) and ...
3
votes
1answer
172 views

jQuery validation fails when using .element(element) within custom method

i need help... in short: I have a custom rule that should check some dependencies by validating the other inputs this one depends on. When I do stuff like that validation for all other inputs seems to ...
1
vote
1answer
73 views

jQuery validator method working differently on mobile

Read EDIT 2 at bottom Original post: I have this jQuery validator method to check for a valid YYYY-MM-DD date: $.validator.addMethod("myDate", function(value, element){ var validformat = ...
0
votes
0answers
610 views

Using jQuery Mobile, onclick not triggering with PhoneGap on Android

I'm using jquery.validate.js with a multipage jquery mobile app. I'm using onclick= to validate each page/form before moving on to the next page. This works correctly in iOS and Android when accessed ...
-1
votes
2answers
160 views

Trigger validations in real-time with jquery.validate

I'm using to jquery.validate to validate my forms. The first-time validation only happens when I focusout the input. If I come back to the same input already validated once, it validates as a write, ...
0
votes
2answers
845 views

jquery validate confirm password

I am using http://bassistance.de/jquery-plugins/jquery-plugin-validation/ to validate a form which will allow a user to change their existing settings. The form has a field for a password as well as ...
1
vote
3answers
83 views

jQuery validation plugin not functioning

I can't seem to figure out what the issue is here. I've tried putting my js in my head, below my form, above my form, etc. None of them seem to do anything. It just submits the page without even ...
2
votes
0answers
613 views

jQuery Validation - IP Address validation problems [duplicate]

I have developed code of how to validate IP Address. Script <script type="text/javascript" src="http://ajax.microsoft.com/ajax/jQuery/jquery-1.4.2.min.js"> </script> ...
0
votes
0answers
182 views

Adding behavior to jquery.validate.unobtrusive externally

I have made modifications to jquery.validate.unobtrusive.js in my project to integrate it with qTip 2.0 - the modifications are as follows; ( I kept the original code there just for reference) The ...
-2
votes
1answer
268 views

Data type validation using jQuery Validation plugin [closed]

How would i validate the data type of a form input(of type text) element? For example i want to have only floating point numbers when i submit the form. <form method="post"> <input ...
0
votes
1answer
123 views

Jquery Validation Plugin - For numeric field only in certain circumstances

I'm trying to make a validation with jQuery Validate for a numeric value but only when a radio button is checked; if the radio button isn't checked the field will be required but the user is able to ...

1 2 3 4 5 11