I have added jqxnotification.js. The version of JqWidget is 3.5
Below is the code I use:
$(“#messageNotification”).jqxNotification({
width: 250, position: “top-right”, opacity: 0.9,
autoOpen: false, animationOpenDelay: 800, autoClose: true, autoCloseDelay: 3000, template: “info”
});
$(“#openMessageNotification”).click(function () {
$(“#messageNotification”).jqxNotification(“open”);
});
<div id=”messageNotification”>
<div>
Welcome to our website.
</div>
</div>
When I run the application I am getting error as “jqxbaseframework is not defined”.
Please guide me on how to solve this.