top of page
Anchor 1
Last Updated on :  
Friday 28 January, 2022

Custom FAQ by creating double collapse effect


 

Tutorial Video

The collapsing design is a great way to list different attorney cases, medical information on a physician's site, education notes, agenda's or plans. By creating your own custom FAQ on Wix you can control the design and get really creative by adding custom images, custom arrows and custom text to display your information on website and make it really unique.


Code used in Tutorial Video

If you are following along to the tutorial video, remember to add or delete code as needed. The example below assumes you are using the properties panel for each element that will use the onClick event from within the properties panel. Remember that a part of the code automatically appears in the page code after clicking on the onClick event within the properties panel. (Keep reading to view alternative code if you do not want to use the properties panel.)



exportfunctionglobe1_click(){
if($w('#topicBox1').collapsed){
    $w('#topicBox1').expand();
 } else {
    $w('#topicBox1').collapse();
 }
}

export function oneArrow1_click() {
if ($w('#oneSub1').collapsed) { 
       $w('#oneSub1').expand(); 
    } else {
         $w('#oneSub1').collapse();
    }
 }
 
export function oneArrow2_click() {
   if ($w('#oneSub2').collapsed) {
        $w('#oneSub2').expand();
    } else { 
        $w('#oneSub2').collapse();
    }
 }
 
export function oneArrow3_click() {
   if ($w('#oneSub3').collapsed) {
           $w('#oneSub3').expand();
    } else {        
       $w('#oneSub3').collapse();
    }
}

 

Good to Know #1

Wix FAQ App

Most people do not know that Wix offers a native Wix FAQ app that requires zero coding. It is a simple single collapse element with the option to add or remove a Title and a native search bar. The reason most people do not know Wix has an FAQ app is because it is not located within the 'add an element' section of the editor. Instead, the Wix FAQ app is located within the Wix app marketplace.


Link to app: https://www.wix.com/app-market/wix-faq


You can install it as many times as needed, you can embed images, videos and hyperlink any text that you add.




Logo_edited.png
Disclaimer

Our free and premium content is non-exclusive, meaning you are not the only one with access to the content. You can customize our content to fit your end product. Redistribution of our content is strictly prohibited. This means you cannot make our content available to others as-is, stand-alone products, or stock products in ANY LANGUAGE, regardless if you offer our content for free or not.

© 2025 WixCodable.com | All Rights Reserved

bottom of page