Answers for "confirm page html"

0

html link confirm

<a href="delete.php?id=22" onclick="return confirm('Are you sure?')">Link</a>

<!-- or -->
<a href="delete.php?id=22" class="confirmation">Link</a>
<script type="text/javascript">
    var elems = document.getElementsByClassName('confirmation');
    var confirmIt = function (e) {
        if (!confirm('Are you sure?')) e.preventDefault();
    };
    for (var i = 0, l = elems.length; i < l; i++) {
        elems[i].addEventListener('click', confirmIt, false);
    }
</script>
Posted by: Guest on August-05-2021
0

js confirm

// The confirm function is used to display a dialog with ok and cancel. Usage:

var content = confirm("Hello"); // The "hello" means to show the following text
if (content === true) {
  // Do whatever if the user clicked ok.
} else {
  // Do whatever if the user clicks cancel.
}

// You can also use window.confirm()
Posted by: Guest on August-10-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language