I'm trying to make a dynamic website using ajax. At this point, it's kind of like a single page where a main div is refreshed after an ajax call using jQuery. The problem I'm having at this time is that by doing this:
- the back button doesn't work as a user would expect.
- A user couldn't bookmark a certain page of results.
I guess I could do call through ajax to another php which would refresh the page and have the a new URL and header. The problem I have is that I'm not a big fan of full page refreshes.
What I would like, at minimal, is a site where the header is static and the content is dynamic but where the back button works and a user could bookmark the page.
I apologize if this isn't clear but hopefully I can explain further based on any questions.