File "floating.js"
Full Path: /home/chawlag2/public_html/cars/images/customers/floating.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');
});
});