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.
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: ','
jQuery-emailinput is available under the terms of the MIT License.