Hello -
Where would the below code go? I can't seem to find a back button event?
function getConfirmation(){
var retVal = confirm("Do you want to Exit the Program ?");
if( retVal == true ){
navigator.app.exitApp();
}else{
return false;
}
}