laurakabul
New Member
I am working on a website which shows a list of transaction records(10 records per page).The page has paging and searching function, which allows user to view specific transaction record.(like date range, types....more than 10 parameters at most)When user clicks anything(changing page/search criteria), a ajax call is used to fetch and display the transactions without reloading.However, say, a user click next page(ajax call) to view page2 and trying to click the browser back button. The site will redirect him to another webpage instead of going back to page1.I know that there is a \[code\]window.history.pushState\[/code\] to change url without reloading in html5 at chrome/Firefox. But I have to support older browsers like IE7+/FF/Chrome/Safari. Are there any existing solution to solve this problem? Thanks.