Back button will return user to a page even if page has been removed from dom
I have a simple CRUD type app written in Jquery Mobile. In order to prevent caching of the page that contains a list of all the "items", I delete the page from the DOM when the page changes.
Unfortunately, when a user clicks "back" to return to the page they just left it will display a blank page rather than request the page again. I need either an alternate way to prevent caching of that page, or a way to ensure that the back button won't send the user to a non-existant page.
Thanks in advance!