Dress up your javascript alerts
I found the javascript library SweetAlert to make the boring javascript alerts beautiful. You can download the library from http://t4t5.github.io/sweetalert/ and add reference to the sweetalert.min.js and sweetalert.css files in your master html page. My sweetalert files are located at sweetalert folder in the library folder of my project. So I can refer it as below.
<link rel="stylesheet" href="library/sweetalert/sweetalert.css"/>
<script src="library/sweetalert/sweetalert.min.js"></script>
Then you can create an alert as in their examples very easily.
Have fun creating sweet alerts!











