🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

WOW Alert is a jQuery based alert() replacement used to create CSS3 animated, good-looking, modal-style dialog popup that can alert a user of anything you choose.

Modal alert popup Dialog

Documentation

WOW Alert: A jQuery plugin to override native alert() method

Wow Alert is a simple jQuery plugin that turn default alerts in pretty nice dialog.

How to use

  • Just include the file wow-alert.js and wow-alert.css in your html file.
  • Run usually the method alert() - alert("Something")
  • Use the second parameter to set the button's label. - alert("Something", "OK")
  • All done!

Exemple with callback

    alert("Hello World!",     {         label: "YES",         success: function () {             console.log("User clicked YES");         }     } 
); 

You May Also Like