Change the tabs content by mouse hover

Question:

I am using a tabs container in Wix Studio - but I found that I can only change the contents by clicking the tab by default. Is it possible to change by mouse hover?

I know how to code by html & js. However, it seems that I can’t add individual ID to the buttons on the tab… Would anyone please help or let me know the alternative method…? Thanks!

The tabs buttons themselves at the top cannot be accessed as individual objects to do that

However, you can create buttons that would looks like those tabs, and set their .onMouseIn() trigger to switch to the desired tab

https://dev.wix.com/docs/velo/api-reference/$w/button/on-mouse-in

https://dev.wix.com/docs/velo/api-reference/$w/tabs/change-tab

Thanks a lot! It works:)