36836-vm/assets/js/main.js
2025-12-10 20:25:09 +00:00

12 lines
343 B
JavaScript

document.addEventListener('DOMContentLoaded', function () {
const toastEl = document.getElementById('cartToast');
const toast = new bootstrap.Toast(toastEl);
document.querySelectorAll('.add-to-cart-btn').forEach(button => {
button.addEventListener('click', function () {
toast.show();
});
});
});