Hi, i'm pretty new to jquery but learning it fast.
I'm trying to post data to an aspx page with jquery $.ajax method. i'm trying to send multile pieces of data. For example, saving data from a registration form.
I'm able to save data with one piece of data, for example, check below
$.ajax ({
method: "post",
url: "destination.aspx",
data: "id="+ id,
success: function(msg) {
//do something
}
});
i'm trying to send many pieces of data from different textboxes on the registration form. any help?
thanks,
aHa