|
const toastTrigger = document.getElementById("liveToastBtn")
|
|
const toastLiveExample = document.getElementById("liveToast")
|
|
if (toastTrigger) {
|
|
toastTrigger.addEventListener("click", () => {
|
|
const toast = new bootstrap.Toast(toastLiveExample)
|
|
|
|
toast.show()
|
|
})
|
|
}
|