money exchange near me
document.addEventListener("DOMContentLoaded", function() {
var buttons = document.querySelectorAll('.quotation a');
buttons.forEach(function(button) {
button.addEventListener("click", function(event) {
var pack = event.currentTarget.getAttribute('data-pack');
console.log(pack);
localStorage.setItem('dataPack', pack);
});
});
var swiperSlides = document.querySelectorAll('.solu-carrousel .swiper-slide');
swiperSlides.forEach(function(slide) {
//console.log(slide.getAttribute('inert'));
slide.removeAttribute('inert');
// Check if the slide has the 'inert' attribute
//if (slide.hasAttribute('inert')) {
// Remove the 'inert' attribute
//slide.removeAttribute('inert');
//}
});
});