I want to call a dynamic JSP page and pass data to it so it will run a query on my database and then return a set of results.
I would like to do this without a visible page refresh.
So in essence i want to pass two parameters to the dynamic page, policyID and columnID. These will vary depending on which tab (policyId) is active and which table column has been clicked on (columnID). These need to be passed without visible page refresh to the external JSP which takes these and uses them to query the database. This then returns a set of results i want to display on screen via jQuery.
Would i use the .get method for this? Is it possible to interact with the server side in this way without page refresh?