Answers for "confirm box input in javascript"

1

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language