Jquery Confirm

Sl. No Project
1 Demo Project
2 Official Web Address

Sample Alert :
$.alert({
    title: 'Alert!',
    content: 'Simple alert!',
});

Confirm Alert :

$.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?'); } } } });

No comments:

Post a Comment