Untitled
unknown
plain_text
a year ago
149 B
8
Indexable
function showTab(tabId) {
hideAllTabs();
document.querySelectorAll(`#${tabId}`).forEach(e => {
e.style.display = 'block';
});
}Editor is loading...
Leave a Comment
function showTab(tabId) {
hideAllTabs();
document.querySelectorAll(`#${tabId}`).forEach(e => {
e.style.display = 'block';
});
}