I’m trying to pass a query string from one page to another page where AJAX will pick it up as the url and then get a return.
The method I’m using for the AJAX query string is to alter hidden form values with a separate user interface form and then .serialize the hidden form values into a query string which AJAX gets and then runs it.
The initial “search” page would be on the home page and then the arguments would be passed tothe results page, but I don’t know how to get them there.
With PHP, it would have been as simple as a POST form to the necessary page. But I’m clueless as how to do it with AJAX.
Please look at the
dataargument of any jQuery AJAX function, eg.jQuery.get()