Skip to content

Latest commit

 

History

History

serialize

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Usage

<form id="myForm">
  <input name="email" type="email" value="[email protected]"/>
  <input name="password" type="password" value="mysecretpassword"/>
</form>
document.getElementById('myForm').serialize()

This method will return the first form of the page serialized as JSON based on inputs and selects property name.

Este método devolverá el primer formulario de la página serializado como JSON basándose en la propiedad name de los inputs y selects.

Output:

email=myEmail@mysite.com&password=mysecretpassword