Recently, I implemented the Phonegap notification.confirm in this way:
navigator.notification.confirm(
'Do you wish to proceed?',
function() {
console.log("Function Called");
},
'Game Over',
'Continue,Exit'
);
Is there a way for me to track which button was clicked?