L1® Model 1S FAQ: Difference between revisions
mNo edit summary |
mNo edit summary |
||
| Line 6: | Line 6: | ||
h3 { | h3 { | ||
font-size:small; | font-size:small; | ||
font-weight: | font-weight: 550; | ||
cursor: hand; | cursor: hand; | ||
cursor: pointer; | cursor: pointer; | ||
color: # | color: #1992BD; | ||
} | } | ||
| Line 35: | Line 35: | ||
<script> | <script> | ||
$(document).ready(function(){ | $(document).ready(function(){ | ||
$("#hideAll").prop("disabled", "disabled"); | |||
// hide all sub details. | // hide all sub details. | ||
| Line 52: | Line 53: | ||
$("h3").addClass("open") | $("h3").addClass("open") | ||
.next().show(); | .next().show(); | ||
$(this).prop("disabled") | |||
$("#hideAll").removeProp("disabled"); | $("#hideAll").removeProp("disabled"); | ||
}); | }); | ||
| Line 57: | Line 59: | ||
$("h3").addClass("closed") | $("h3").addClass("closed") | ||
.next().hide(); | .next().hide(); | ||
$(this).prop("disabled") | |||
$("#showAll").removeProp("disabled"); | $("#showAll").removeProp("disabled"); | ||