I am trying to figure out how to append two more values to the serialize method in JQuery. I have the following code to submit a form with ajax and have two more variables t
You can add new values by appending to your variable:
formData += '&var1=blah&var2=blah';