Wix drop down faq without any apps

// Velo API Reference: https://www.wix.com/velo/reference/api-overview/introduction

$w.onReady(function () {

    $w('#vectorImage8').onClick(() => {
        $w('#statebox8').changeState('expend')
    })
    $w('#vectorImage6').onClick(() => {
        $w('#statebox8').changeState('collapse')
    })

    $w('#vectorImage10').onClick(() => {
        $w('#statebox9').changeState('state1')
    })
    $w('#vectorImage9').onClick(() => {
        $w('#statebox9').changeState('state2')
    })
});