12 lines
343 B
JavaScript
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();
|
|
});
|
|
});
|
|
});
|