html confirm prompt code example

Example 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"
});

Example 2: alert in js returb value or not

Alert in JS doesn't return anything -- it just Displays Message

Tags:

Css Example