Untitled

 avatar
unknown
plain_text
7 days ago
149 B
3
Indexable
function showTab(tabId) {
    hideAllTabs();
    document.querySelectorAll(`#${tabId}`).forEach(e => {
     e.style.display = 'block';
    });
}
Leave a Comment