Skip to content

Gabrielr47/easyNotify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

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

About

easyNotify is a simple plugin for jQuery.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published