jquery-serialize-object icon indicating copy to clipboard operation
jquery-serialize-object copied to clipboard

Converts HTML form into JavaScript object

Results 23 jquery-serialize-object issues
Sort by recently updated
recently updated
newest added
trafficstars

take number type of inputs as integer

It would be nice to do vice versa: from given hash setup form values ```javascript $("form").setData({foo: {bar: "a", bof: "b"}, hello: "world"}); ``` which in turn will fill corresponding form...

May you please merge this: https://github.com/HetaLab/jquery-serialize-object/commit/0a1f564b5ea79ebb726763b91435c15bd43e6275 Thank you

We used this to parse a form that includes a select box of mailchimp list ids. Recently one of our users reported strange issues, on investigation it was found that...

how to take some values as integers ? and also array as empty. Currently array contains atleast ""

hi! ``` ``` i want to got a json like: {user: {email: "[email protected]", pets: [cat:["cat1","cat2"], "dog"]}} but l got a json : { "user":{"email":"[email protected]","pets":["cat", "dog",null,{"cat":[null,null,"cat2"]} ]} please tell me how...

[![Build Status](https://travis-ci.org/GabLeRoux/jquery-serialize-object.svg?branch=master)](https://travis-ci.org/GabLeRoux/jquery-serialize-object) I didn't go in too much details, but I managed to get the CI working on this project. I suppose this can be improved, but at least if...

Added support for providing options when serializing forms. Options are used to ensure that default functionality continues as is. Current options include an option to define how various `` types...

Parse a html form file, to its base 64 string.

feature

When a checkbox is unchecked OR disabled, it never ends up in the serialized objec. This PR fixes that. Let me know if any changes are needed.