document.addEventListener("DOMContentLoaded", () => { // Select the span with the specific class const phoneElement = document.querySelector(".ts-text.call-us-btn"); if (phoneElement) { // Replace the phone number format phoneElement.textContent = phoneElement.textContent.replace(/\((\d{3})\)\s(\d{3})-(\d{4})/, '$1 $2-$3'); } });