Android Toast-style jQuery Notification Plugin - dpToast
File Size: | 294 KB |
---|---|
Views Total: | 928 |
Last Update: | |
Publish Date: | |
Official Website: | Go to website |
License: | MIT |

dpToast is a very small jQuery plugin used to create nice clean toast notifications as you seen on the Android apps.
How to use it:
1. Load the latest version of jQuery and the jQuery dpToast plugin in your project.
<script src="//code.jquery.com/jquery-2.1.3.min.js"></script> script src="src/jquery.dpToast.js"></script>
2. The plugin provides two ways to display a message toast on your webpage.
$.fn.dpToast("Hello World"); $().dpToast("Hello World");
3. Custom timeout.
$.fn.dpToast("Hello World", 5000);
This awesome jQuery plugin is developed by dustinpoissant. For more Advanced Usages, please check the demo page or visit the official website.