7 examples of 'alert script' in JavaScript

Every line of 'alert script' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
49alert (msg, exception = null) { this.log('alert', msg, exception) }
29export function alert(...object) {
30 if (object.length === 1) {
31 console.log('Object:', object[0]);
32 window.alert(JSON.stringify(object[0], circularReferencesReplacer(), 4));
33 } else {
34 console.log('Object:', object);
35 window.alert(JSON.stringify(object, circularReferencesReplacer(), 4));
36 }
37}
50function doAlert()
51{
52var message = "This is an Alert dialog";
53var title = "Attention!";
54
55navigator.notification.alert(message,
56function()
57{
58console.log("Alert dismissed.");
59},
60title);
61
62console.log("After alert");
63};
24function alert(message, cb) {
25 console.log("alert()", message);
26 sns.publish({
27 Message: message,
28 Subject: "aws-tag-watch",
29 TopicArn: config.alertTopicArn
30 }, cb);
31}
34function doAlert(text) {
35 alert(text); // equals: $.alert(text);
36 console.log('Not Blocked.');
37}
81function alert(arg) {
82 return new Promise(function (resolve, reject) {
83 try {
84 var options = !dialogsCommon.isDialogOptions(arg) ? { title: dialogsCommon.ALERT, okButtonText: dialogsCommon.OK, message: arg + "" } : arg;
85 var alert_1 = createAlertDialog(options);
86 alert_1.setPositiveButton(options.okButtonText, new android.content.DialogInterface.OnClickListener({
87 onClick: function (dialog, id) {
88 dialog.cancel();
89 resolve();
90 }
91 }));
92 alert_1.setOnDismissListener(new android.content.DialogInterface.OnDismissListener({
93 onDismiss: function () {
94 resolve();
95 }
96 }));
97 showDialog(alert_1);
98 }
99 catch (ex) {
100 reject(ex);
101 }
102 });
103}
308export function alert(arg: any): Promise {
309 return new Promise((resolve, reject) => {
310 try {
311 const options = !isDialogOptions(arg) ? { title: ALERT, okButtonText: OK, message: arg + '' } : arg;
312 const alertController = createAlertController(options, resolve);
313
314 addButtonsToAlertController(alertController, options, result => {
315 (alertController as any)._resolveFunction = null;
316 resolve(result);
317 });
318
319 showUIAlertController(alertController);
320 } catch (ex) {
321 reject(ex);
322 }
323 });
324}

Related snippets