# serialize-form **Repository Path**: mirrors_alexgorbatchev/serialize-form ## Basic Information - **Project Name**: serialize-form - **Description**: Serialize HTML form to string without javascript framework. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-07-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Port to CoffeeScript from [http://code.google.com/p/form-serialize/][adaptation] with bugfixes. # Serialize HTML Form ## Download - [CoffeeScript](https://raw.github.com/yurikoval/serialize-form/master/serialize.js.coffee) - [Javascript](https://raw.github.com/yurikoval/serialize-form/master/serialize.js) 1836B (100%) - [Minified](https://raw.github.com/yurikoval/serialize-form/master/serialize.min.js) 1147B (62%) - [Packed](https://raw.github.com/yurikoval/serialize-form/master/serialize.packed.js) 1009B (54%) ## Usage ```html
``` ```js var form = document.getElementsByTagName('form')[0]; var serialized = serialize(form); // fullname=James%20Bond&email=email%40example.com ``` # Demo [View Demo][demo] [adaptation]: http://code.google.com/p/form-serialize/ [demo]: http://yurikoval.github.com/serialize-form/