Answers for "javascript confirm onclick"

1

onclick javascript confirm

<a href="url_to_delete" onclick="return confirm('Are you sure you want to delete this item?');">Delete</a>
Posted by: Guest on October-30-2021
0

javascript onclick alert are you sure

<a href="#" onclick="return confirm('Continue?')">DISABLE</a>
Posted by: Guest on June-17-2020
1

jquery confirmation dialog example

$("#complexConfirm").confirm({
    title:"Delete confirmation",
    text:"This is very dangerous, you shouldn't do it! Are you really really sure?",
    confirm: function(button) {
        alert("You just confirmed.");
    },
    cancel: function(button) {
        alert("You aborted the operation.");
    },
    confirmButton: "Yes I am",
    cancelButton: "No"
});
Posted by: Guest on September-11-2020

Browse Popular Code Answers by Language