Click here to Skip to main content
15,867,686 members
Articles / Programming Languages / Javascript
Article

XP collapsible menu with description

Rate me:
Please Sign up or sign in to vote.
3.86/5 (7 votes)
18 Nov 20021 min read 159.4K   1.8K   43   29
An update of my Windows XP Style Menu article, now with description supported for every link.

Sample Image - MenuWithDescription.gif

Introduction

This is an update of my previous article (WindowsXP Style Menu) which creates a Windows XP look alike Panel Bar with the separation of structure, presentation and functions. Now this menu is updated to support transparent popup description for every link inside it.

Since this article uses the same code of the previous article, I just show here the structure (HTML) of the menu which you can just copy and paste to create as many submenus inside it as you need, without writing a single line of code.

The Structure (HTML)

The complete HTML is in the source code.

HTML
<!-- begin the menu -->
<div id="MainMenu">
  <!-- begin submenu -->
  <span>
    <div style="width:180">
      <table cellpadding="1" cellspacing="0" class="Menu_Head">
        <tr>
          <td width="90%">ASP.NET</td>
          <td><img src="down.gif" border="0">&nbsp;</td>
        </tr>
      </table>
    </div>
    <div class="Menu_Items">
      <div>
        <div>
          <a href="">User Controls</a>
          <div class="Description">
            <div class="DescTitle">User Controls articles</div>
            View all articles about User Controls
          </div>
        </div>
        <div>
          <a href="">Server Controls</a>
          <div class="Description">
            <div class="DescTitle">Server Controls articles</div>
            Tutorials show you how to write server controls
          </div>
        </div>
        <div>
          <a href="">Custom Controls</a>
          <div class="Description">
            <div class="DescTitle">Custom Controls articles</div>
            Tutorials show you how to write advanced custom controls
          </div>
        </div>
        <div>
          <a href="">Applications</a>
          <div class="Description">
            <div class="DescTitle">Applications</div>
            View all demo applications like guestbook, forum...
          </div>
        </div>
      </div>
    </div>
  </span>
  <!-- end sub menu -->
  ....

The structure is quite simple, the menu starts with the first <div> tag, each submenu is nested inside it with the <span> tag. The Submenu header (title) is nested inside the <div style="width:180"> and all the links are nested inside the

HTML
<div 
class="Menu_Items">
. After every link, you should have a <div> to contain its description, it will automatically show when you move the mouse over the link.

That's it for the menu. Hope this could help you a bit.

History

  • 19 November 2002

    Fixed an expanding bug: clicking too fast on the expand/collapse button will result in an extra white space of the submenu. Thanks to Obliterator for pointing it out.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Singapore Singapore
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionDoes anyone know how to do the same thing in ASP.NET ?? Pin
conankunkid5-Oct-05 4:02
conankunkid5-Oct-05 4:02 
AnswerRe: Does anyone know how to do the same thing in ASP.NET ?? Pin
jay_dubal25-Feb-06 9:49
jay_dubal25-Feb-06 9:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.