JavaScript tree menu can be used to display hierarchical structure of the site or any other structure.
JavaScript drop down menu is one of the most commonly used controls on the web.
JavaScript Outlook bar menu is another fancy way of the site navigation.
COOLjsBuilder is a standalone application for Windows PCs which allows you to implement JavaScript menu and tree based on COOLjsTree or COOLjsMenu scripts.
COOLjsMenu Professional provides support for special kind of menu - popup. This menu most of the time is invisible, but when user clicks somewhere, menu shows up.
To describe such a menu, you have to use two new fields in menu description:
var VERTICAL_MENU_ITEMS = [
{popup:1, popupoff:[0,0], ...
"popup" denotes that this particular menu will behave like popup, and "popupoff" is default offset from mouse cursor for those menus which will appear when mouse event - click or rollover - occur.
Then you have to create the menu:
<script type="text/javascript">
var menu = new COOLjsMenuPRO("test", VERTICAL_MENU_ITEMS);
menu.init(); </script>
And finally you have to choose some way to activate menu. Generally, menu must be binded to some event. In the following three samples "onmouseover" event is used: