Is it possible to submit form elements (serialized with .serialize() method) and other parameters with a single AJAX request?
Example:
$.ajax({ type : 'POST', url : 'url', data : { $('#form').serialize(), par1 : 1, par2 : '2', par3: 232 } }
If not, what is the best way to submit the form along with other parameters?
thank
jquery ajax serialization forms
KenavR May 01 '12 at 14:01 2012-05-01 14:01
source share