I have the following handler:
$(window).bind(\'pageshow\', function() { alert(\"back to page\"); });
When I navigate away from the
I solved that issue like that;
$(window).bind("pageshow", function () { setTimeout(function () { back(); }, 1000); }); function back() { //YOUR CODES }