Untitled

Anonymous
plain_text
02/05/2025 1:27 AM
200 B
13
Indexable
function showTab(tabId) {
    hideAllTabs();
    document.querySelectorAll(`#${tabId}`).forEach(e => {
     e.style.display = 'block';
    });
}
Editor is loading...
Leave a Comment