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

MessageSystem.js is a web/browser push notification inspired jQuery notification plugin that helps you handle success and/or error messages on your web applications.

Notification

Documentation

#Getting started

Download and link in your <head> section MessageSystem.css and MessageSystem.js

 <link rel="stylesheet" href="MessageSystem.css"/> <script type="text/javascript" src="MessageSystem.js"> </script>  

#Usage

Now you can use MessageSystem object under ms variable. You can specify type of notification and message what you want to display. Notification will apeard for 10 sec. - for example let's create error notification:

 ms.Notification({     type : "error",     message: 'This is error notification. Please contact with Help center' });  

Or success notification:

	 ms.Notification({     type : "success",     message: "This is success notification! Congratulations" });  

You May Also Like