Support
Installation
Include script after the jQuery library:
<script src="easyNotify.js"></script>
Usage
Basic setup:
<div id="easyNotify"></div> <!-- HTML -->
$("#easyNotify").easyNotify(); // JS
Options can be pass by object like:
var options = { title: "Notificação", options: { body: "O melhor do Brasil são os Brasileiros.", icon: "icon.png", lang: 'pt-BR', } }; $("#easyNotify").easyNotify(options);
Functions can be pass by param to run on methods like onclose
var myCloseInfo = function(){ alert('this is a callback function that runs after close the notification.'); }; var options = { title: "Notificação", options: { body: "O melhor do Brasil são os Brasileiros.", icon: "icon.png", lang: 'pt-BR', onClose: myCloseInfo } }; $("#easyNotify").easyNotify(options);