Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

jquery-toast

uaison181.0.0

jQuery plugin for show and hide Toast

toast, jquery

readme

jquery.toast

jQuery Toast Plugin

Usage

<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
<script src="jquery.toast.js"></script>
 <script>
    // show toast
    $.Toast.showToast({
        title: "Loading...",
        duration: 1500,
        icon:"loading",
        image: ''
    });

    // hide toast
    $.Toast.hideToast();
 </script>