jquery alert confirm code example

Example 1: jquery alert with yes no

if (confirm('Are you sure ?')) {
        console.log('ok');
    }else
    {
      console.log('cancel')
    }

Example 2: 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 3: jquery confirm

$.confirm({    title: 'Confirm!',    content: 'Simple confirm!',    buttons: {        confirm: function () {            $.alert('Confirmed!');        },        cancel: function () {            $.alert('Canceled!');        },        somethingElse: {            text: 'Something else',            btnClass: 'btn-blue',            keys: ['enter', 'shift'],            action: function(){                $.alert('Something else?');            }        }    }});

Tags:

Html Example