#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" });