What exactly do you need to do? If you need to transfer additional data to the server, you can see this example
EDIT - I found out about this:
aoData is an array of variable names / values ββthat jQuery will receive and send to the server, so you can read them as POST variables (or GET if you decide to use).
You have the name and value parameters defined twice in the same object ... Try:
aoData.push ({"name": "blah", "value": "blahblah"}); aoData.push ({"name": "thing", "value": "thingsvalue"});
Nicola Peluchetti
source share