bootstrap-toast.js 438 B

12345678910111213
  1. $('.toast-toggler').on('click', function () {
  2. $(this).next('.toast').prependTo('.toast-bs-container .toast-position').toast('show')
  3. // if ($('.toast-bs-container .toast-position .toast').hasClass('hide')) {
  4. // $('.toast-bs-container .toast-position .toast').toast('show')
  5. // }
  6. });
  7. $('.placement').on('click', function () {
  8. $('.toast-placement').toast('show');
  9. $('.toast-placement .toast').toast('show');
  10. });