Detect tizen web app going to background?

1.8k Views Asked by At

I need detect when my app moved to background by home pressed.

I try the next code:

document.addEventListener("pause", function(){
    console.log("pause");
}, false);

$("#main-page").focusout(function (){
    console.log("received focus Out Event") ;
});

$("#main-page").on("pagehide", function() {
    console.log("main-pagehide");
});

$("#main-page").on("pageremove", function() {
    console.log("main-pageremove");
});

$("#main-page").on("pagebeforehide", function() {
    console.log("main-pagebeforehide");
});

but when I pressed home nothing happens.

1

There are 1 best solutions below

3
On

Try to use the visibilitychange event, because this is the one which should be triggered in the scenario that you described (home button pressed).

document.addEventListener("visibilitychange", function() {
    console.log("visibilitychange");
    if (document.hidden) {
        console.log('document hidden');
    } else  {
        console.log('document visible');
    }
}, false);