-
Notifications
You must be signed in to change notification settings - Fork 1
cairesvs/formfy
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Usage: new Formfy().with.action("/my/resource").method("get").text("login").password("password").password("password_confirmation").done(); Using multiple inputs: new Formfy().with.action("/resource").post().inputs({type: 'text', value: 'Username', id: 'username'} , {type: 'password', id: 'password'}).done(); Using select: new Formfy().with.select("states", function(){ var selectfy = this; selectfy.with.option("NY", "New York").option("LA","Los Angeles"); }).done(); new Formfy().with.select("states", function(){ var selectfy = this; selectfy.with.options({ value : "NY", text : "New York"}, {value : "CA", text : "California", selected : "selected" }); }).done();
About
Dynamic form creation
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published