🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

easyNotify.js is a small jQuery plugin which utilizes the HTML5 APIs to display customizable HTML5 desktop push notifications in jQuery.

Notification desktop-notification push-notification

Documentation

easyTable is a simple plugin for jQuery to send notifications.

Support

easyTable is a simple plugin for jQuery to send notifications.

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);

Demo

easyNotify

Author

Gabriel Rodrigues


You May Also Like