Search code examples
ioscordovaeventsdom-eventshybrid-mobile-app

How to detect home button pressed in Cordova?


I am facing some problem after user click on home button and kill the application in iOS. Application is developed using Cordova.

I want to detect When user clicked on home button in iOS. Is there any Cordova events which get fired when user click on Home Button?


Solution

  • After testing in device, "pause" event get fired when user clicked on home button in ios application which is developed using cordova.

    document.addEventListener("pause", function(){
    //get fired pause event occured 
    console.log("pause event is fired"); 
    }, false):