Overview Of SWEET ALERT

Introduction

A simple and effective article which might come handy while developing web applications.


 



Oh not again! We add efforts designing a beautiful website but still sometimes use the JavaScript's old alert pop up or any modal or window pop up. But that can be now avoided by this beautiful plugin. This is a free dynamic and easy to use and manipulate. It is a SWEET ALERT created by Tristan Edwards. This provides great dynamic and good-looking interface and acts same as the alert pop up. Let us have a look at the difference once. The old alert is shown above and rather should be an imprint in any developer's mind.. Now below is the alert by Sweet Alert, which is truly sweet. Doesn't this look professional and goes with the websites being designed now?
 

Wondering about the syntax. It is simple and same as the JavaScript alert.
  1. swal("Welcome to SWAL");  
Now let us get into the other secrets of SWAL and `beautify!

More facts and Secrets of SWAL

We can do a lot many interesting things using this simple tool. Let's check out.
 
applications

We can add explanation or text under the alert message, unlike in JS alert, whatever we add comes as a single statement. Lets see how! The code again for this goes simple as:
  1. swal("Welcome to SWAL","Is'nt this pretty!!"); 
We can add icons to update user with more information and in a more interactive manner. Lets check how! This is a success message, like we can have suppose success message alert for Addition of Detail is Success, or Update or Delete is success.

message

The code goes like the following:
  1. swal("Welcome to SWAL","Is'nt this pretty!!","success");  
This comes with an animated success icon. Once you try, you will get the feel.

There are cases we may get some server error. We may track the error on Ajax and display some alert to the end user regarding that. The above code with just a minor change would display a error icon with animation as well.
 


The code looks like:
  1. swal("Welcome to SWAL","Oh no!!","error");  
The alert looks like the following:

run

There are cases we may get some validation error from users or some kind of confirmation from user if he/she want to continue. In that case swal provides warning icon.
 
The code looks like the following:
  1. swal("Welcome to SWAL","Are you sure!!","warning");  
The alert looks like the following:

Another interesting option is the alternative to confirm("Are you sure!") with a Ok and cancel button and on Ok do what !! Lets have a hand to it using SWAL:
  1. swal({  
  2.         title: "Are you sure?",  
  3.         text: "You are deleting this completely!",  
  4.         type: "warning",  
  5.         showCancelButton: true,  
  6.         confirmButtonColor: "#DD6B55",  
  7.         confirmButtonText: "Yes, delete it!",  
  8.         closeOnConfirm: false  
  9.     },  
  10.     function(isConfirm)  
  11.      {  
  12.         if (isConfirm)  
  13.         {  
  14.             swal("Deleted!""Your file has been deleted.""success");  
  15.         }  
  16.     });  
The above snippet is only a confirmation and if confirmed then what to do. Here a success alert is displayed that file is deleted. We can also format the text in HTML format, display any image or any other sort of html manipulation inside the alert pop up. Check below:
  1. swal(  
  2. {  
  3.     title: "HTML Welcome to SWAL!",  
  4.     text: "A html format html message.",  
  5.     html: true  
  6. });  
There are a lot of more stuffs which we can do and enjoy. Please check the detailed explanation in the following link: SWAL.

Downloads

SWAL required only a CSS and JavaScript file to be added to your layout and done. The following is the direct download link to get the files,

Conclusion

I hope this simple article comes handy for many in future and help developers give a wonderful look and feel and make their clients happy.

Up Next
    Ebook Download
    View all
    Learn
    View all