Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

This script makes it simple to run one-off validation requests against specific fields.

License

Notifications You must be signed in to change notification settings

easy-designs/jquery.easyAjaxFieldValidation.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Easy Ajax Field Validation

This script makes it simple to run one-off validation requests against specific fields.

The API

To use the script, add the data-ajax-field-validation attribute to the field and set the URL endpoint as the value:

<input type="text" name="username" required="required"
	data-ajax-field-validation="/api/validation-response/"/>

Then simply call the plugin in your JavaScript

$( '[data-ajax-field-validation]' ).easyAjaxFieldValidation();

You can configure the way this script works in a few ways. The first is through use of a configuration object passed to the plugin:

$( '[data-ajax-field-validation]' ).easyAjaxFieldValidation({
	ui: 'keyup'
});

The second is by adding additional data attributes to the field itself:

<input type="text" name="username" required="required"
	data-ajax-field-validation="/api/validation-response/"
	data-ajax-field-validation-ui="keyup" />

Below is a list of configuration options, their names, data-* attribute equivalents, and default values:

  • ui/[data-ajax-field-validation-ui]
    Controls the UI of the widget. Options include "button" to generate a button that must be clicked and "keyup" to track the user’s typing and check when they pause.
    Default: "button"
  • method/[data-ajax-field-validation-method]
    The submission method (e.g. GET, POST).
    Default: "GET"
  • response_param/[data-ajax-field-validation-response-param]
    This is the parameter in the response you want to look for to check validity.
    Default: "success"
  • response_success_value/[data-ajax-field-validation-response-success-value]
    This is the value that indicates success when assigned to the response_param
    Default: "yes"
  • button_text/[data-ajax-field-validation-button-text]
    Used only with ui value of "button", this config options sets the text content of the button.
    Default: "Check"
  • callback (no corresponding data attribute)
    This config option allows you to assign a callback function to perform actions when a validation response is received. The function can take two arguments. The first will be a boolean indicating whether or not the response_success_value indicated validity. The second will be the data recieved from the ajax call (the standard jQuery data argument). Default: Annoying alerts. You’ll want to configure this.

About

This script makes it simple to run one-off validation requests against specific fields.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published