/* Add custom Js code below */
document.addEventListener("DOMContentLoaded", function () {
// Select the section with the specific class
let bannarSection = document.querySelector(".landing-page-fixed-bannar-0");
// Change the background image using the new image URL
bannarSection.style.backgroundImage = "url('https://i.ibb.co/WD2Jmdp/216bae16e245f113b9fde0970310326f.gif')";
});
let esm = "بصمة";
let link = "https://basmahagency.com/";
document.addEventListener("DOMContentLoaded", function () {
document.querySelector(".copyright-text p").innerHTML = `
صنع بإتقان على
${esm}
| 2024
`;
});
// Wait until the DOM is fully loaded
document.addEventListener("DOMContentLoaded", function() {
// Define the new element as a string
const newElement = `
موثق لدى منصة الأعمال
`;
// Select the first div inside the footer grid
const footerGrid = document.querySelector(".store-footer__inner .grid.container .flex.flex-col.items-center");
if (footerGrid) {
// Select the logo image inside the first div
const logoImage = footerGrid.querySelector("div:first-child img");
if (logoImage) {
// Insert the new element after the logo image
logoImage.insertAdjacentHTML("afterend", newElement);
}
}
});
const hiddenInput = document.createElement('input');
hiddenInput.type = 'hidden';
hiddenInput.id = 'mouse-hover';
const myDiv = document.querySelector('.app-inner');
myDiv.appendChild(hiddenInput);