Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jongha/jquery-emailinput
jQuery-emailinput is email address input control for jQuery. This is jQuery plugin. This is required when creating an web mail service such as hotmail and gmail. It supports validation of email address.
https://github.com/jongha/jquery-emailinput
email javascript jquery jquery-emailinput jquery-plugin
Last synced: 29 days ago
JSON representation
jQuery-emailinput is email address input control for jQuery. This is jQuery plugin. This is required when creating an web mail service such as hotmail and gmail. It supports validation of email address.
- Host: GitHub
- URL: https://github.com/jongha/jquery-emailinput
- Owner: jongha
- License: mit
- Created: 2013-05-28T05:39:50.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-05-04T13:01:25.000Z (over 10 years ago)
- Last Synced: 2024-12-09T12:58:49.955Z (about 1 month ago)
- Topics: email, javascript, jquery, jquery-emailinput, jquery-plugin
- Language: JavaScript
- Homepage: http://plugins.jquery.com/emailinput/
- Size: 629 KB
- Stars: 3
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jQuery-emailinput
[![Build Status](https://travis-ci.org/jongha/jquery-emailinput.png?branch=master)](https://travis-ci.org/jongha/jquery-emailinput)
[![Coverage Status](https://coveralls.io/repos/jongha/jquery-emailinput/badge.png)](https://coveralls.io/r/jongha/jquery-emailinput)
[![Dependency Status](https://gemnasium.com/jongha/jquery-emailinput.png)](https://gemnasium.com/jongha/jquery-emailinput)jQuery-emailinput is email address input control for jQuery. This is jQuery plugin. This is required when creating an web mail service such as hotmail and gmail. It supports validation of email address.
## Screenshot
![Screenshot](https://raw.github.com/jongha/jquery-emailinput/master/demo/screenshot.png)
## Usage
Initialize
```
$('#target').emailinput();
```Change internally control id.
```
$('#target').emailinput( { id: 'changed id' );
```Retrieve the values.
```
$('#target').val();
```Manage only valid email address only.
```
$('#target').emailinput( { onlyValidValue: true ); // default: true
```Manage only valid email address only.
```
$('#target').emailinput( { onlyValidValue: true ); // default: true
```Change delimiters of retrieve the value.
```
$('#target').emailinput( { delim: ';' ); // default: ','
```## License
jQuery-emailinput is available under the terms of the MIT License.