Please let me know if below is the correct way to send data to another page using jQuery or not. I am a beginner and not sure about the syntax. rowData is in JSON format. I am passing the values on click of a button.
$.post("GridValues.jsp", {"rowData": rowData });
Your jquery call should work fine for you. Plus you can always refer the jquery API jQuery.post
Try them out and let us know if you come across any problems.