1.1.0 • Published 5 years ago
jquery-toasts v1.1.0
jquery-toasts
A simple & lightweight toast messages library

Installation
You can install jquery-toasts plugin using npm or include directly files
install using npm
npm install jquery-toastsor include files
<head>
...
<link rel="stylesheet" href="/your/servers/assets/path/css/jquery-toasts.min.css">
<script src="/your/servers/assets/path/js/jquery.min.js"></script>
<script src="/your/servers/assets/path/js/anime.min.js"></script>
<script src="/your/servers/assets/path/js/jquery-toasts.min.js"></script>
...
</head>Simple Usage
creating toast with element attributes
<button data-toast="Your toast message">Create toast using attribute</button>
<button data-toast="Your toast message" data-timeout="1000">Create toast using attribute with timeout</button>or jQuery
$.toast('Your toast message');Help and docs
Please report bugs from issues tab