LittleCub Forms

Light-Weight, High-Performance & Easily Customizable

Control for email field and as the default control mapped to email format.

List of supported JSON schema keywords.

List of supported LittleCub config options.

Example 1 :

Email control.

Native API

var emailControl1 = LittleCub("test@nxfinc.com", {
    "size" : 60
}, {
    "type" : "string",
    "format" : "email"
}, document.getElementById('email-control-1'));

jQuery API

var emailControl1j = $('#email-control-1-j').lc("test@nxfinc.com", {
    "size" : 60
}, {
    "type" : "string",
    "format" : "email"
});