Horje
listen back button event listner Code Example
listen back button event listner
window.history.pushState({page: 1}, "", "");

window.onpopstate = function(event) {

  // "event" object seems to contain value only when the back button is clicked
  // and if the pop state event fires due to clicks on a button
  // or a link it comes up as "undefined" 

  if(event){
    // Code to handle back button or prevent from navigation
  }
  else{
    // Continue user action through link or button
  }
}
back button event listener javascript
function goBack() {
    window.location.hash = window.location.lasthash[window.location.lasthash.length-1];
 	window.location.lasthash.pop();
}




Whatever

Related
platform_device_id flutter Code Example platform_device_id flutter Code Example
String as Parameter on C Code Example String as Parameter on C Code Example
openweathermap Code Example openweathermap Code Example
int main (void) Code Example int main (void) Code Example
how to edit text with vim Code Example how to edit text with vim Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7