The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxNotification widget requires the following files:
$("#jqxNotification").jqxNotification("open");
To set a property(option), you need to pass the property name and value(s) in the
jqxNotification's constructor.
$("#jqxNotification").jqxNotification({ position: "top-right" });
To get a property(option), you need to pass the property name to the jqxNotification's
constructor.
var position = $("#jqxNotification").jqxNotification("position");
To bind to an event of a UI widget, you can use basic jQuery syntax. The example
code below demonstrates how to bind to the "close" event of jqxNotification.
// bind to close event.
$("#jqxNotification").bind("close", function (event) {
alert("Notification was closed.");
});