L1® Model 1S FAQ: Difference between revisions

mNo edit summary
mNo edit summary
Line 28: Line 28:


// hide all sub details.
// hide all sub details.
     $("h3").next().hide();
 
     $("h3").addClass("closed")
.next().hide();


     $("h3").click(function () {
     $("h3").click(function () {
Line 36: Line 38:
         }
         }
         $(this).next().toggle("fast");
         $(this).next().toggle("fast");
        $(this).toggleClass("open");
     });
     });