The perfect FAQ page !
This is about using a Definition List and the DOM to create a nice FAQ page where clicking on the DTs (the questions) "toggles" the associated DDs (the answers).
Note: If you're already using this solution, please check your version number (this is version 1.5.5). This latest version addresses a IE issue with images within DDs.
This is what it does:
Open AllClose All- Question 1?
- The vitality of conceptual synergies is of supreme importance exploiting the productive lifecycle working through a top-down, bottom-up approach. To focus on improvement, not cost, from binary cause and effect to complex patterns, while those at the coal face don't have sufficient view of the overall goals.
- Question 2?
- To focus on improvement, not cost, from binary cause and effect to complex patterns, while those at the coal face don't have sufficient view of the overall goals. To ensure that non-operating cash outflows are assessed.
- Question 3?
- The vitality of conceptual synergies is of supreme importance exploiting the productive lifecycle working through a top-down, bottom-up approach. To focus on improvement, not cost, from binary cause and effect to complex patterns, while those at the coal face don't have sufficient view of the overall goals. To ensure that non-operating cash outflows are assessed. The vitality of conceptual synergies is of supreme importance exploiting the productive lifecycle working through a top-down, bottom-up approach.
- Question 4?
- The vitality of conceptual synergies is of supreme importance exploiting the productive lifecycle working through a top-down, bottom-up approach. To ensure that non-operating cash outflows are assessed.
- Question 5?
- The vitality of conceptual synergies is of supreme importance exploiting the productive lifecycle working through a top-down, bottom-up approach. To focus on improvement, not cost, from binary cause and effect to complex patterns, while those at the coal face don't have sufficient view of the overall goals. To ensure that non-operating cash outflows are assessed.
The main advantages of the basic technique (related to the DL):
- It uses semantic markup.
- It degrades nicely (hidden elements are visible in script-disabled UAs).
DTs do not appear as links without script support.- It does not use inline event attribute (
onclick()). - It does not require
Aelements in the markup. - It is screen-readers "friendly".
- It is keyboard "friendly".
- It is IE Mac compatible.
- It relies on one single hook.
- It allows the author to add/move/delete
DT/DDpairs easily (there is no variable in the script to edit and there are noclassorIDto include nor change). - It is "powered" by a very light script (3Kb).
About the "Show All/Hide All" "links":
- they let the user expand all answers at once, so it is possible to search the document.
- they are hidden from Javascript-challenged browsers.
- they can be "Named Anchors", images or SPANs (actually they can be any inline elements or any other elements styled as inline).
This is more or less a plug-and-play solution (script and stylesheets are at the bottom of this page).
You'll need to:
- Create a Definition List (do not use more than one
DDperDT.); the markup for the one above looks like this:<dl> <dt>Question 1</dt> <dd>The vitality of conceptual synergies...</dd> <dt>Question 2</dt> <dd>To focus on improvement, not cost, ...</dd> <dt>Question 3</dt> <dd>The vitality of conceptual synergies...</dd> <dt>Question 4</dt> <dd>The vitality of conceptual synergies...</dd> </dl>
- Assign a specific ID to your
DL:<dl id="TJK_DL">
- Download this ZIP File (3Kb) and unzip its content in the same directory as your FAQ page.
- In your FAQ page, right above the closing
headtag (</head>) cut and paste the following:<script type="text/javascript" src="TJK_ToggleDL/TJK_ToggleDL.js"></script>
- Call the script using the
onloadevent:<body onload="TJK_ToggleDL()">
Or, better, use a technique like the one explained here:
executing JavaScript on page load. - In order to use the "Show All" / "Hide All" feature, you will need to create 2 named anchors with specific
IDs (TJK_ToggleONandTJK_ToggleOFF). Dreamweaver users can take advantage of the "Named Anchor" icon in the toolbar to easily create the required markup. Dreamweaver will plug thenameattribute as well, but that's OK, you can either delete it or ignore it.
This is the markup I'm using in this page:<a id="TJK_ToggleON">Open All</a><a id="TJK_ToggleOFF">Close All</a>
Note: adjacent anchors are confusing in text-browsers.
You can also replace these Named Anchors with other inline elements, for example SPANorIMG(yes, images). Just make sure to set the properIDs. - Because we want to hide these "links" from script-challenged UAs, you need to include the following rule somewhere inside your stylesheet:
#TJK_ToggleON,#TJK_ToggleOFF {display:none}Note: You can also use a
styleelement to include this rule in theheadof your document (your FAQ page).
You're done!
Feel free to edit the rules in the CSS file to fit your needs.
Note: in case your questions are more than one line long, you may want to change this: "background:0 50%" to this: "background:0 0" and add "display:block" to the #TJK_DL dt a {} rule (to avoid any "wrapping").
Latest news:
- Hanz has created a recipe from this script for pmwiki users.
- Read this article in Italian on Javascript.html.it.
For the curious
- TJK_ToggleDL.js
// Copyright 2006 | Thierry Koblentz - www.TJKDesign.com All Rights reserved // TJK_ToggleDL() Version 1.5.4 report bugs or errors to thierry@tjkdesign.com
if (document.getElementById && document.getElementsByTagName){
document.write("<link href=\"TJK_ToggleDL/TJK_ToggleDL.css\" type=\"text/css\" rel=\"stylesheet\" />") document.write("<link href=\"TJK_ToggleDL/TJK_ToggleDL_ie5mac.css\" type=\"text/css\" rel=\"stylesheet\" />") } function TJK_doToggleDL(x){ var zDD=document.getElementById('TJK_DL').getElementsByTagName('dd'); var zDT=document.getElementById('TJK_DL').getElementsByTagName('dt'); zDD[x].className=(zDD[x].className=='hideDD')?'showDD':'hideDD'; zDT[x].className=(zDT[x].className=='DTplus')?'DTminus':'DTplus'; } function TJK_ToggleDLopen(){//we open all of them var zDD=document.getElementById('TJK_DL').getElementsByTagName('dd'); var zDT=document.getElementById('TJK_DL').getElementsByTagName('dt'); for(var i=0;i<zDT.length;i++){ zDD[i].className='showDD'; zDT[i].className='DTminus'; } return false; } function TJK_ToggleDLclose(){//we close all of them var zDD=document.getElementById('TJK_DL').getElementsByTagName('dd'); var zDT=document.getElementById('TJK_DL').getElementsByTagName('dt'); for(var i=0;i<zDT.length;i++){ zDD[i].className='hideDD'; zDT[i].className='DTplus'; } return false; } function TJK_ToggleDL(){ if (document.getElementById && document.getElementsByTagName){ var zDT=document.getElementById('TJK_DL').getElementsByTagName('dt'); var zDD=document.getElementById('TJK_DL').getElementsByTagName('dd'); var ToggleON = document.getElementById('TJK_ToggleON'); var ToggleOFF = document.getElementById('TJK_ToggleOFF'); if (ToggleON && ToggleOFF){ ToggleON.onclick = TJK_ToggleDLopen; ToggleON.title = "Show all answers"; ToggleON.href = "#"; ToggleOFF.onclick = TJK_ToggleDLclose; ToggleOFF.title = "Hide all answers"; ToggleOFF.href = "#"; } for(var i=0;i<zDT.length;i++){ var zContent = zDT[i].innerHTML; var zHref = "<a href='#' onclick=\"TJK_doToggleDL("+i+");return false\" title='Show/hide the answer'>"; zDT[i].innerHTML = zHref + zContent + "</a>"; zDD[i].className='hideDD'; zDT[i].className='DTplus'; } } } - TJK_ToggleDL.css
/* "Show All" + "Hide All" links */ #TJK_ToggleON,#TJK_ToggleOFF {border:1px solid #333;padding:0 5px;margin-right:5px} /* zeroing out padding and margin */ #TJK_DL dd,#TJK_DL dt {margin:0;padding:0} /* margin for the DTs (shorthand) */ #TJK_DL dt {margin:7px 0} /* image and left padding for DDs */ #TJK_DL dd {background:url(answer.gif) no-repeat;padding-left:55px} /* styling all anchors in the DTs */ #TJK_DL dt a {background:0 50% no-repeat;padding-left:32px;color:#000;text-decoration:none} #TJK_DL dt a:visited {color:#666} #TJK_DL dt a:visited:hover, #TJK_DL dt a:hover, #TJK_DL dt a:active, #TJK_DL dt a:focus {font-weight:bold} /* the + and - gif in the anchors */ #TJK_DL .DTplus a {background-image:url(toggleDLplus.gif)} #TJK_DL .DTminus a {background-image:url(toggleDLminus.gif)} /**********************************/ /**********************************/ #TJK_DL .showDD {position:static;} #TJK_DL dd,.hideDD{top:-9999px;position:absolute} #TJK_ToggleON,#TJK_ToggleOFF {display:inline;cursor:pointer; cursor:hand}Note: "
cursor:hand" is for IE5 Win, but this declaration will make this sheet fail Validation. If Validation is important to you, you can either delete this declaration or move it inside a Conditional Comment. - TJK_ToggleDL_ie5mac.css
/*\*//*/ #TJK_DL .showDD {display:block} #TJK_DL dd,.hideDD {position:static;display:none} /**/
For the DOM police
Earlier versions of this script did not use document.write(), I was using the DOM to plug the stylesheets in the HEAD element. Unfortunately, setting the rel attribute of the LINK element makes Safari "go blank" and STYLE fails in IE Win. So, I decided to go with what works!




















