On Thursday, January 25, 2018 at 8:38:01 PM UTC-5, matthe...@gmail.com wrote: > > Specific question: how do you handle the user hitting the "back" button on >> their browser? Its very common and a lot of simple approaches don't handle >> it well. > > > This was a problem for me. I force the page to reload instead of using the > cache: > > > // > https://stackoverflow.com/questions/8788802/prevent-safari-loading-from-cache-when-back-button-is-clicked/13123626#13123626 > // > https://stackoverflow.com/questions/17432899/javascript-bfcache-pageshow-event-event-persisted-always-set-to-false > $(window).bind("pageshow", function(event) { > if (event.originalEvent.persisted || (window.performance && (window. > performance.navigation.type == 2))) { > window.location.reload(); > } > }); > > > Interesting. Does this work on all browsers on all platforms?
-- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.