jquery-serialize-object
jquery-serialize-object copied to clipboard
Converts HTML form into JavaScript object
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...
[](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...
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.