back button event listener javascript code example
Example: back button event listener javascript
function goBack() {
window.location.hash = window.location.lasthash[window.location.lasthash.length-1];
window.location.lasthash.pop();
}
function goBack() {
window.location.hash = window.location.lasthash[window.location.lasthash.length-1];
window.location.lasthash.pop();
}