JQM Form AJAX Response Cache Issue

JQM Form AJAX Response Cache Issue

Hi.

I'm using PhoneGap & JQM 1.1.1 and trying to accomplish this:

Form with Arrival Date & Duration posts to a results page which i've got a

$("#form1").submit( function (e) {

    e.preventDefault();

    $.mobile.changePage("#availability_response");

});


to take the vars on the form and change page to availability response. within availability response I make an ajax call based on the posted form params... all very good and works fine 1st time, but if i use the 'back' button (data-add-back-btn="true"), and change the arrival date to a completely different date and hit submit again, i get the results from the 1st query back....


The ajax call is not even being reinvoked, so my assumption is that the entire page has been cached. How can I prevent this from happening, so that the ajax call is invoked and the fresh data is output into my listview?


Kind regards