When you serialise a form using jQuery.serialize(), the method will serialise the form fields and its values so you can submit to the server. Is there a method/function that would do the same with a javascript object instead of a form?
How to serialise a javascript object
4.7k Views Asked by WagnerMatosUK At
2
You're looking for the
jQuery.param
function.