document.addEventListener("DOMContentLoaded", function() { const h2Element = document.querySelector('.screen-reader-text'); if (h2Element) { const h3Element = document.createElement('h3'); h3Element.className = h2Element.className; // Copy the class name h3Element.innerHTML = h2Element.innerHTML; // Copy the content h2Element.parentNode.replaceChild(h3Element, h2Element); // Replace h2 with h3 } });