Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docs:programming:javascript:collapsible_div [2007/03/05 16:34] – (old revision restored) 127.0.0.1 | docs:programming:javascript:collapsible_div [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Collapsible DIV ====== | ====== Collapsible DIV ====== | ||
- | Original URL: http:// | + | This page demonstrates |
- | One of the most handy (and cool) tricks a web developer could learn to use is collapsible DIVs. This allows you to make a page that will only show the user what they want to see. If they’re interested in some part of content, such as a “mail to friend” or an expanded definition, they could click a link or image and make the page dynamically grow in size to show that added bit of content. | + | ===== Screenshot Examples ===== |
+ | ==== Closed ==== | ||
+ | {{div_closed.png|}} | ||
- | This was inspired by some comments in a post on Aaron’s SEO Buzz Box, and while I think he might be looking for a slightly more advanced solution, it gave me the idea to type up this post. | + | ==== Open ==== |
+ | {{div_open.png|}} | ||
+ | ===== head code ===== | ||
+ | <code javascript> | ||
+ | <script type=" | ||
+ | |||
+ | var sections = new Array(" | ||
+ | |||
+ | function init(){ | ||
+ | // if we have javascript, set up the page accordingly | ||
+ | var i; | ||
+ | for(i=0; i< | ||
+ | toggleRoll(sections[i]); | ||
+ | } | ||
+ | } | ||
- | There’s a few different bits of code we’ll use in this. First we’ll create a div we want to expand or contract. For example: | + | function getElem(elemID){ |
+ | if(document.all){ | ||
+ | return document.all(elemID); | ||
+ | }else if(document.getElementById){ | ||
+ | return document.getElementById(elemID); | ||
+ | }else if(document.layers){ | ||
+ | return document.layers[elemID]; | ||
+ | } | ||
+ | } | ||
- | <code html> | + | function toggleRoll(elemID){ |
- | <div id=" | + | var elem = getElem(elemID); |
- | </ | + | |
- | Notice our tagging the div with a unique id. This allows our Javascript to be able to find it when we alter it’s visibility. We also added a style property, setting it’s | + | if(elem.style.display != " |
+ | elem.style.display | ||
+ | var img = getElem(elemID + " | ||
+ | img.src = " | ||
+ | }else{ | ||
+ | elem.style.display = " | ||
+ | var img = getElem(elemID + " | ||
+ | img.src = " | ||
+ | } | ||
- | Next we’ll create a link with some inline Javascript to hide or show our div. It’s quite a bit to take in at once, but don’t worry I’ll explain it in depth in a second. Here it is: | + | // clear the user selection, in case they have mistakenly double clicked |
+ | if(typeof window.getSelection != " | ||
+ | var sel = window.getSelection(); | ||
+ | if(sel && typeof sel.removeAllRanges != " | ||
+ | sel.removeAllRanges(); | ||
+ | }else if(typeof document.selection.empty != " | ||
+ | document.selection.empty(); | ||
+ | } | ||
+ | } | ||
- | <code html> | + | </script> |
- | <a href=" | + | |
</ | </ | ||
- | Whew! It’s so complicated because it’s done with inline Javascript. I’ll show an alternate method that’s much cleaner a bit later. But first, let’s tackle this. It’s a simple anchor tag, but you’ll notice the href is “javascript:; | + | ===== body code ===== |
- | + | ||
- | Note, the following explanation is very detailed and assumes virtually no knowledge of Javascript… so if this seems basic to you, feel free to skip it. | + | |
- | + | ||
- | Now, we have the href property clean so there’s nothing ugly in the status bar on mouseover, but we still need to actually do the hiding or showing of the div. We call this through the onmousedown property of the anchor tag. We can find the DIV we created earlier by document.getElementById(’mydiv’), | + | |
- | + | ||
- | An alternative which is a bit cleaner than that inline anchor tag (above) is creating a javascript function for toggling the DIV’s visibility. For this method, use the following anchor tag: | + | |
<code html> | <code html> | ||
- | <a href=" | + | <body onload=" |
+ | <div id="content"> | ||
+ | < | ||
+ | |||
+ | <h3 onclick=" | ||
+ | <div id=" | ||
+ | ...div content... | ||
+ | </ | ||
+ | |||
+ | <h3 onclick=" | ||
+ | <div id=" | ||
+ | ...div content... | ||
+ | </ | ||
+ | |||
+ | <h3 onclick=" | ||
+ | <div id=" | ||
+ | ...div content... | ||
+ | </ | ||
+ | |||
+ | <h3 onclick=" | ||
+ | <div id=" | ||
+ | ...div content... | ||
+ | </ | ||
+ | |||
+ | <a class=" | ||
+ | </ | ||
+ | </body> | ||
</ | </ | ||
- | |||
- | This anchor tag behaves like the above inline javascript, except instead of executing the change in the anchor tag itself (inline), it instead calls the toggleDiv function, passing the div name as a parameter. | ||
- | |||
- | This anchor tag above calls the following function. Simply insert this text (the function) somewhere in your document above the link in the body tag, or in the HEAD tag of the HTML itself: | ||
- | <code html> | ||
- | <script language=" | ||
- | function toggleDiv(divid){ | ||
- | if(document.getElementById(divid).style.display == ' | ||
- | document.getElementById(divid).style.display = ' | ||
- | }else{ | ||
- | document.getElementById(divid).style.display = ' | ||
- | } | ||
- | } | ||
- | </ | ||
- | </ | ||
- | |||
- | This function does exactly what the above inline javascript does, only it’s a bit cleaner. When it’s called by the anchor tag, it checks the div with the name passed to see if it’s currently not visible (display set to “none”), | ||
- | |||