Answers for "confirm box js"

26

javascript confirm yes no

var proceed = confirm("Are you sure you want to proceed?");
if (proceed) {
  //proceed
} else {
  //don't proceed
}
Posted by: Guest on May-02-2020
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
2

confirm javascript

if (window.confirm("Une nouvelle fenêtre va s'ouvrir.")) {
    window.open("fenetre.html", "Nouvelle fenêtre", "");
}
Posted by: Guest on January-14-2021
0

js confirm

onclick="if (! confirm('Deseja mesmo deletar o arquivo links.html?')) { return false; }"
Posted by: Guest on August-04-2021
0

Confirm alert

$.alert({    title: 'Alert!',    content: 'Simple alert!',});
Posted by: Guest on June-09-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language