UNPKG
@charescape/mazer-fork-ost
Version:
latest (2.1.4141)
2.1.4141
2.1.4140
Free and Open-source Bootstrap 5 Admin Dashboard Template and Landing Page
@charescape/mazer-fork-ost
/
prebuild
/
assets
/
static
/
js
/
pages
/
component-toasts.js
10 lines
(8 loc)
•
282 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
toastTrigger =
document
.
getElementById
(
"liveToastBtn"
)
const
toastLiveExample =
document
.
getElementById
(
"liveToast"
)
if
(toastTrigger) { toastTrigger.
addEventListener
(
"click"
,
() =>
{
const
toast =
new
bootstrap.
Toast
(toastLiveExample) toast.
show
() }) }