Answers for "close js confirm dialog jquery"

0

jquery confirm dialog

var response = confirm("Confirm Combine?");
            if (response == true) {
				//do something
            }
Posted by: Guest on January-05-2022
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language