basic notify js example

basic notify js example
in this article, i will show you a basic notify js example. notify.js is a jquery plugin to provide simple yet fully customizable notifications.

<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/notify/0.4.2/notify.min.js"></script>
</head>
<body>
<script>
$.notify('hello developer', {
globalPosition:'top right',
className:'info'
});
</script>
</body>
</html>

Post a Comment

0 Comments