"_ blank" "_ self" . 'exit' , .
,
navigator.app.exitApp();
:
var ref = window.open('http://google.com', '_blank', 'location=no');
ref.addEventListener('exit', function(event){ Exit(); });
function Exit(){
navigator.notification.confirm(
'Do you want to exit app?',
function(i){
if(i==2)
{
navigator.app.exitApp();
}
},
'App Name',
'Cancel,Exit'
);
}
, .