01.
<script>
02.
03.
$(window).on(
"navigate"
,
function
(event, data) {
04.
var
direction = data.state.direction;
05.
if
(direction ==
'back'
) {
06.
window.location=
'index.html'
;
07.
}
08.
if
(direction ==
'forward'
) {
09.
window.location=
'index.html'
;
10.
}
11.
});
12.
</script>