Saturday 22 April 2017

jquery - From form to javaScript map

I'm trying to get the form data from my form returned as a simple map Object {a: "b", c: "d"}




I know I can .serialize() and .serializeArray() and then do it myself. Isn't there a jQuery function or something vailable for that?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...