How to bring up an okay / cancel dialog box in Javascript?

Alan2

When I click on "delete post" on StackOverflow it brings up a window on the screen asking if I want to go ahead or if I want to cancel.

How can I do that in Javascript so that it will work in both a computer and on an IPad?

Ram Singh

You can achieve it by using confirm, use the code as below:

<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
confirm("Press a button!");
}
</script>

The above example is very basic, if you some designed confirm box then please check craftpip's jquery-confirm Hope you like it.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Search PHP - how to bring up search box with no results

From Dev

How to close / cancel a pop-up modal / dialog window in Applescript

From Dev

In dialog box "setCanceledOnTouchOutside()" not working to cancel the box

From Dev

determine if user selects 'cancel' in dialog box

From Dev

How to include a pop-up dialog box in subflow

From Dev

How to include a pop-up dialog box in subflow

From Dev

How to block the htaccess login dialog box in pop-up ads?

From Dev

Color Dialog box not showing up

From Dev

How to bring up a div box while hovering over a span tag in a section?

From Dev

Dialog popping up but cancel and ok is not a function

From Dev

Javascript,Dialog Box,Database

From Dev

How can I remove the pesky "The runCommand action was canceled" dialog box after a "cancel = true" statement

From Dev

How to bring network up on boot?

From Dev

How to bring up a xib as a "pop up" in a ViewController?

From Dev

JavaFX How to bring Dialog/Alert to the front of the screen

From Dev

Is there a way to bring up a dialog multiple times using the same object?

From Dev

Custom javascript confirm dialog box

From Dev

Bootbox javascript confirm dialog box

From Dev

How to bring up the set default launcher prompt?

From Dev

Excel 2016 - How to bring up a conditional list

From Dev

Javascript confirm box, if cancel is clicked, it will not reload the page

From Dev

javascript prompt box without the cancel button?

From Dev

Javascript confirm box, if cancel is clicked, it will not reload the page

From Dev

How to prevent a pop-up dialog-box from changing its position?

From Dev

How to make a “do not ask me again” dialog pop-up box with java?

From Dev

How to pop up a dialog box at 8pm (20:00 hours) every day using java?

From Dev

How to add cancel button to spinner dialog?

From Dev

How To "Cancel" Load Event From a Dialog

From Dev

How to show a Modal Dialog and Cancel Navigation in OnNavigatingFromAsync

Related Related

  1. 1

    Search PHP - how to bring up search box with no results

  2. 2

    How to close / cancel a pop-up modal / dialog window in Applescript

  3. 3

    In dialog box "setCanceledOnTouchOutside()" not working to cancel the box

  4. 4

    determine if user selects 'cancel' in dialog box

  5. 5

    How to include a pop-up dialog box in subflow

  6. 6

    How to include a pop-up dialog box in subflow

  7. 7

    How to block the htaccess login dialog box in pop-up ads?

  8. 8

    Color Dialog box not showing up

  9. 9

    How to bring up a div box while hovering over a span tag in a section?

  10. 10

    Dialog popping up but cancel and ok is not a function

  11. 11

    Javascript,Dialog Box,Database

  12. 12

    How can I remove the pesky "The runCommand action was canceled" dialog box after a "cancel = true" statement

  13. 13

    How to bring network up on boot?

  14. 14

    How to bring up a xib as a "pop up" in a ViewController?

  15. 15

    JavaFX How to bring Dialog/Alert to the front of the screen

  16. 16

    Is there a way to bring up a dialog multiple times using the same object?

  17. 17

    Custom javascript confirm dialog box

  18. 18

    Bootbox javascript confirm dialog box

  19. 19

    How to bring up the set default launcher prompt?

  20. 20

    Excel 2016 - How to bring up a conditional list

  21. 21

    Javascript confirm box, if cancel is clicked, it will not reload the page

  22. 22

    javascript prompt box without the cancel button?

  23. 23

    Javascript confirm box, if cancel is clicked, it will not reload the page

  24. 24

    How to prevent a pop-up dialog-box from changing its position?

  25. 25

    How to make a “do not ask me again” dialog pop-up box with java?

  26. 26

    How to pop up a dialog box at 8pm (20:00 hours) every day using java?

  27. 27

    How to add cancel button to spinner dialog?

  28. 28

    How To "Cancel" Load Event From a Dialog

  29. 29

    How to show a Modal Dialog and Cancel Navigation in OnNavigatingFromAsync

HotTag

Archive