document.querySelector(".AAAMMM").innerHTML = `
فرع جدة
فرع المدينة المنورة
فرع خميس مشيط
فرع سكاكا
فرع جازان
`; function showMapLocation(index) { const tabs = document.querySelectorAll(".tabLocation"); const maps = document.querySelectorAll(".mapContainerLocation iframe"); tabs.forEach(tab => tab.classList.remove("activeLocation")); maps.forEach(map => map.classList.remove("activeLocation")); tabs[index].classList.add("activeLocation"); maps[index].classList.add("activeLocation"); }