Select Language

Activity

Joshua S. Las Vegas, NV
Melany W. San Jose, CA
Esteban C. Miami, FL
Tara S. New York, NY
The slicer project getslicer.io
31%
5 / 24
Metamovies reworked metamovies.co
84%
28 / 31
Fast Pizza redesign fastpizza.com
60%
25 / 39

Call Danny at Colby's

Today - 11:30am

Meeting with Alice

Today - 01:00pm

Answer Annie's message

Today - 01:45pm

Send new campaign

Today - 02:30pm

Project review

Today - 03:30pm

Call Trisha Jackson

Today - 05:00pm

Write proposal for Don

Today - 06:00pm

Alertify

If a user needs to confirm an action before it is executed, you should use a confirm prompt. For more information about usage and available options, please refer to the plugin documentation and to the code example below.


      //Markup
      <button id="alertify-demo-1" class="button h-button">Launch Alert</button>
      
      //Javascript
      $('#alertify-demo-1').on('click', function () {
          initConfirm('Standard Alert', 'Are you sure you want to perfom this action? You won\'t be able to recover or to revert it.', false, false, 'Delete', 'Cancel');
      })
      

With Callback

A callback function can be executed when the OK or CANCEL buttons are pressed. For more information about usage and available options, please check the provided code example.


      //Markup
      <button id="alertify-demo-2" class="button h-button">Launch Alert</button>
      
      //Javascript
      $('#alertify-demo-2').on('click', function () {
          initConfirm('Custom Alert', 'You can pass a callback function as a callback parameter to define what happens after the confirm button is clicked.', false, false, 'Callback', 'Cancel', function (closeEvent) {
              alert('The callback was executed!')
          })
      })