Questions tagged [jquery-validation-engine]

jQuery validation engine is a Javascript plugin aimed at the validation of form fields in the browser (IE 6-8, Chrome, Firefox, Safari, Opera 10).

jQuery Validation Engine is a jQuery plugin related to client-side HTML form-field validation and validation-error-notification.The plugin provides visually appealing prompts that grab user attention on the subject matter.

It supports various value-types (Text, Email, Phone, URL, ...), multiple languages and browsers (IE 6-8, Chrome, Firefox, Safari, Opera 10).

Validations range from email, phone, and URL, to more complex calls such as ajax processing or custom javascript functions. Bundled with many locales, the error prompts can be translated into the language of your choice.

It is available under MIT license.

Useful links

344 questions
4
votes
2 answers

jQuery ValidationEngine and PO Box

I am currently using jQuery and the jquery ValidationEngine for a site, and it works like a charm. The issue is that I need to add the ability to check for (and dis-allow) P.O. Box addresses. I have looked around quite extensively and have not been…
Silvertiger
  • 1,680
  • 2
  • 19
  • 32
4
votes
2 answers

Error prompt position issue with validationengine plugin (Position Absolute)

I am using Position Absolute's Validation Engine for validating values on form. The issue is that on validation, the error prompts do not appear attached to the textboxes (input type:text) as they are expected. I know that the issue is with the…
Shant
  • 237
  • 1
  • 3
  • 16
3
votes
2 answers

jQuery ValidationEngine validation of inputs on tabs - prompt position and scrolling

I have a multi-tab UI for personal info. The form encapsulates the entire "tabset" Initially, I was using v2.2, which did not have the validateNonVisibleFields flag. I have now upgraded to 2.6.2 to take advantage of this feature. I made a "dummy"…
MB34
  • 4,210
  • 12
  • 59
  • 110
3
votes
1 answer

Jquery Validation Engine: Expression for Disallowing Only Certain Characters

I'm just getting my feet wet with Jquery Validation Engine and need help on how to write a new regex for disallowing certain characters. I just want to disallow some scripting/coding characters to satisfy a PCI scan requirement on a website. Per the…
dotcominfo
  • 31
  • 1
3
votes
1 answer

jQuery Validation engine, past and future date validation by dd/mm/yyyy format

I am new in jQuery. I am using jQuery version 1.8.3. In my ASP.NET Web application, I am using jQuery Validation engine to validate date. I am dynamically creating HTML text input which allows user to enter date only in dd/mm/yyyy format and here I…
Rahul More
  • 615
  • 3
  • 13
  • 41
3
votes
0 answers

jQuery validation engine js daterange custom function needed

Am using the following validation plugin: https://github.com/posabsolute/jQuery-Validation-Engine I have two fields start date and end date. I want the start date to choose any future/past dates. However, I want the end date to compare with start…
3
votes
4 answers

jQuery-Validation-Engine - Validation File MIME Type

I would like to use the jQuery-Validation-Engine to validate the MIME Type of a file input. How could I do this? My approach would be something like this: function checkMIME(field, rules, i, options){ var file = $("#userfile")[0].files[0]; …
Kashuda
  • 185
  • 2
  • 10
3
votes
1 answer

jQuery Validation Engine: Trouble Creating a Custom Function

I've tried both the custom[function_name] and funcCall[methodName] methods listed the the documentation and I can't seem to get either to work. my custom function looks like this: function einTest(field, rules, i, options) { if (field !=…
3
votes
1 answer

Unable to specify custom error in jQuery validation engine

I am fiddling with the jQuery validation engine documented here I have downloaded all JS files locally. And created a simple form with single required textbox field. Problem 1 I am unable to specify custom error for this required rule (even though…
Mahesha999
  • 22,693
  • 29
  • 116
  • 189
3
votes
4 answers

Posabsolute's jQuery Validation-Engine and CkEditor

I have searched the site (and Google) and cannot find a working solution for my problem. I'm using Posabsolute's Validation-Engine, and it is working just fine. Except for my problem children - my CKeditor formatted textareas. I know that I need to…
AriStorm
  • 31
  • 2
3
votes
1 answer

Position Absolute's jQuery-Validation-Engine - Conditional Validation of form fields

I am working with Position Absolute's Form validation engine. I have a specific case for validation that I'm hoping this can solve for me. I need to be able to make one field required based on the value of another field. For example: If…
3
votes
4 answers

validationEngine not submitting form using onValidationComplete

$(document).ready(function(){ jQuery("#bbSignup").validationEngine('attach', { onValidationComplete: function(form, status){ if ( status == "true" ) { $("#bbSignup").submit(); $("#bbSignup").hide(); …
user7954
  • 323
  • 4
  • 12
3
votes
1 answer

conditional validation in jquery validation engine

I have a checkbox and a textbox. I require that if a checkbox is ticked then textbox becomes compulsary. Vice versa if the textbox is filled the checkbox becomes compulsary. So sample would be Name of Item - Checkbox - Expiry Date Name of Item2…
Sam
  • 350
  • 5
  • 18
2
votes
2 answers

How to enable conditionally validation using ValidationEngine

I am using ValidationEngine for client side validation. I have a scenario In my form I have 3 text box, now I want to validate "required" on all the field only if any one of them is filled, else I can proceed with blank form How do I do this using…
rrd
  • 43
  • 1
  • 5
2
votes
1 answer

Validating Dynamic forms

jQuery(document).ready(function(){ $("#submitButton").click(function () { if ( $("#formToSubmit").validationEngine('validate') == true) { $("#formToSubmit").submit(); } }); I am using the Validation Engine plugin for jQuery to validate…
1
2
3
22 23