Untitled

 avatar
unknown
plain_text
a year ago
376 B
6
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