Skip to content

xezzus/jquery.getform.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Install

bower install getform

Example

<div id="form">
  <div><input type="text" name="name"></div>
  <div><input type="text" name="email"></div>
  <div><input type="text" name="phone"></div>
  <div><button name="registration" type="button">Registration</button></div>
</div>
$(function(){
  $('#form').getform(function(e){
    console.log(e);
  });
});
{
 "element":[Object],
 "form":{
  "name":"",
  "email":"",
  "phone":""
 },
 "name":"email",
 "type":"input",
 "value":""
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published