This plugin provides access to some native dialog UI elements. Methods navigator.notification.alert navigator.notification.confirm navigator.notification.prompt navigator.notification.beep Examples //Beep Example beep = function(arg) { navigator.notification.beep(arg); //arg(a number) stands for how many times it will beep. }; //Alert, Confirm,Prompt Example //native alert nativeAlert = function() { navigator.notification.alert( ‘This is a native alert.’, // message alertDismissed, // callback ‘Native […]