Answers for "javascript popup with yes and no button"

8

js alert yes no

if (confirm('Are you sure you want to donate to Andrew Hyder?')) {
  // true (paypal.me/andrewdhyder)
} else {
  // false
}
Posted by: Guest on August-06-2020
0

javascript option yes/no popup

if (confirm('Are you sure you want to save this thing into the database?')) {
  // Save it!
  console.log('Thing was saved to the database.');
} else {
  // Do nothing!
  console.log('Thing was not saved to the database.');
}
Posted by: Guest on March-29-2021

Code answers related to "javascript popup with yes and no button"

Code answers related to "Javascript"

Browse Popular Code Answers by Language