I\'ve seen some other posts about iOS 6\'s new behaviors with Web sites saved to / launched from the home screen. On iOS 5 (and earlier), we were able to use the Javascript Hist
Try one of them
window.history.pushState http://thelink.is/history-api-ios-bug
window.history.pushState
http://thelink.is/history-api-ios-bug
OR
window.history.pushState(data, title, 'a/new/url#');
window.history.pushState(data, title, 'a/new/url'); window.location.hash = 'new';
window.history.pushState(data, title, 'a/new/url');
window.location.hash = 'new';