Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/byteplant/jquery-email-validator-net

jQuery plugin for the email-validator.net API
https://github.com/byteplant/jquery-email-validator-net

cleaning data-cleaning data-quality email email-cleaning email-marketing email-validation email-verification form-validation form-validation-jquery javascript javascript-library jquery validation verification

Last synced: 4 days ago
JSON representation

jQuery plugin for the email-validator.net API

Awesome Lists containing this project

README

        

jquery-email-validator-net
=========

A small library providing a wrapper for [api.email-validator.net](http://www.email-validator.net/email-adresse-pruefen-online-api.html) for jQuery

## Installation
Download zip, extract and embed `jquery.email-validator-net.js` to your HTML.
This Plugin needs jQuery!
## Usage
See test.js and test.html
```js
// Init only once
$.validateEmail("YOUR API KEY");

// OnClick
$("#submit").click(function () {
$("#email").validateEmail(function (response) {
console.log(response);
})
})

//response looks like that:
{
status: 200, // ==> http://www.email-validator.net/email-verification-results.html
info: "OK - Valid Address", // ==> http://www.email-validator.net/email-verification-results.html
details: "Looong description", // ==> http://www.email-validator.net/email-verification-results.html
simpleStatus: "VALID" // VALID, SUSPECT or INVALID (to keep it simple)
}

});
```

## Release History

* 0.1.0 Initial release