File "floating-20260907133242.js"

Full Path: /home/chawlag2/public_html/cars/js/floating-20260907133242.js
File size: 267 bytes
MIME-type: text/plain
Charset: utf-8

var close_button = document.querySelector(".close-button");
var social_buttons = document.querySelectorAll(".social");

close_button.addEventListener('click',()=>{
   social_buttons.forEach(function(buttons){
       buttons.classList.toggle('hide');
   });
});