Qmenu

Intro

This page demonstrates the use of qexpose. This is generally used in menus of websites to enhance user experience.

At the page load it automatically positions itself at the current element of your menu. If there is no current element, the first element is chosen.
Its moves with the mouse whenever the mouse is hovered on the menu elements.

Demo

Let's start with a simple horizontal menu

window.addEvent('domready', function(){ q=new Qmenu($('menu'),{ }); })

Il works both horizontal and vertical menu

window.addEvent('domready', function(){ q=new Qmenu($('menus'),{ }); })

This would work no matter which orientation and position your menu is. However, all the titles in your menu must be contained in the li tag.

Works on all major browsers (especially IE6)