Untitled
unknown
plain_text
2 years ago
376 B
7
Indexable
<script>
const $ = document.querySelector.bind(document)
const $$ = document.querySelectorAll.bind(document)
const tabs = $$('.tab-item')
const panes = $$('.tab-pane')
tabs.forEach((tab, index) => {
tab.onclick = function() {
this.classList.add('active')
}
})
</script>Editor is loading...
Leave a Comment