$("#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