LittleCub Forms

Light-Weight, High-Performance & Easily Customizable

Control for hidden field.

List of supported JSON schema keywords.

List of supported LittleCub config options.

Example 1 :

Hidden control.

Native API

var hiddenControl1 = LittleCub("hidden value", {
    "type" : "hidden"
}, {
    "type" : "string"
}, document.getElementById('hidden-control-1'));

jQuery API

var hiddenControl1j = $('#hidden-control-1-j').lc("hidden value", {
    "type" : "hidden"
}, {
    "type" : "string"
});