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.
COOLjsTree Professional allows you to capture tree events. Try to move your mouse over different elements of the tree. Also click button, icon, and caption to see which events will be fired.
Following events are supported:
onclick;
onmouseover;
onmouseout.
These events can be applied to the following elements:
caption;
button;
image.
E.g. to capture onmouseover event of the caption, do the following:
var tree1 = new COOLjsTreePRO(...);
tree1.caption_onmouseover = function (node) {
// your event handler
}
There is a limitation: all event handlers must be installed before the init() call.