Answers for "confirmation box in javascript"

2

alert confirm prompt javascript

if (confirm("Press a button!")) {
    console.log("Accepted")
  } else {
    console.log("Declined")
  }
Posted by: Guest on May-01-2021
0

inline confirm box javascript

onclick="return confirm('Are you sure?')"

<a href="delete.php?id=22" onclick="return confirm('Are you sure?')">Link</a>
Posted by: Guest on May-21-2021
-1

JS confirm box

window.confirm("sometext");
Posted by: Guest on August-04-2021

Code answers related to "confirmation box in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language