Sothink Tree Menu Onclick Innerhtml by Deluxe-Tree.com
Sothink Tree Menu Onclick Innerhtml


Buy Now!  Free Trial Download

Menu Screenshots Sothink Tree Menu Onclick Innerhtml

Sothink Tree Menu Onclick Innerhtml Tree Drag And Drop Tree

Features Sothink Tree Menu Onclick Innerhtml

Seamless Integration
  • Visible over flash, select boxes, iframes, java applets
  • Multiple menus on the same page
  • Amicable to other scripts and css styles
  • Any HTML code can be used inside menu items
Cost Effective
Tree Menu Example Tutorial Sothink Tree Menu Onclick Innerhtml
Unrivalled Features
  • Scrollable, dragable, floating
  • Unique Java Script API for altering menu "on-the-fly", without page reloading
  • AJAX technology - loads menu data from the server "on-fly and on-demand".
Compatibility              
  • Full cross-browser compatibility including IE, Netscape, Mozilla, Opera, Firefox, Konqueror and Safari on Windows, Mac OS and Linux
  • Menu can be populated from a database using ASP, PHP, etc.
  • Search engine friendly
  • Support for any doctypes
  • Fits for secure sites
High Performance
  • AJAX menu loading - loads web menu data from the server "on-the-fly".
  • Commonly loads quicker than other html page elements
  • Runs well with an unlimited number of submenus and items
Buy Now!  Free Trial Download

Javascript Tree Menu. Expandable Menu.

  • Good navigation is an important step to website success. If people can't find their way around the site, they will quickly give up looking and leave, never to return. So, it's absolute vital that your website has a fast, neat, and eye-pleasing navigation.
    Don't allow your website visitors to get lost. Try Javascript/DHTML Tree Menu!

Recent Questions Sothink Tree Menu Onclick Innerhtml

Q: I have not seen anything that can help me in the question list and would like to ask how to have a mouseover drop down menu closed by default. I know that by preceding it with a '+' has it open and had assumed that removing it would close it, but it does not seem to do this.

Where in the scripts do I need to change this value and will this be updated in the future?

A: You should delete "+" signs in the top items and set the followingparameter:

  var texpanded=0;



Q: I have a popup that in one of the submenus has an input field. There is a problem – if the user clicks into the entry field, but moves the mouse outside the java swing menu, the menu can close while the user is still typing. Is there any way to prevent that from happening?

A: You can make submenus to stay visible till you click outside the menu or scroll your page.To enable this feature you should set the following parameter:

  var smHidePause=-1;

You can set this parameter to each submenu individually usingIndividual Submenu Styles.



Q: Does your cool dhtml menu work on a Mac platform with Dreamweaver?

A: To create your cool dhtml menu on MAC you can use HTML version of Deluxe Tuner (for MAC OS). You can find it here:

http://deluxe-menu.com/deluxe-tuner-info.html

Unfortunately we don't have html version of the Tuner for Javascript/DHTML Treeand Deluxe Tabs now. We'll try to create it in the nearest future.

JavaScript Tree Menu wasn't developed as Dreamweaver/Frontpage/GoLIveBuilder extension,BUT you can use it as standard Javascript files. To install the menuinto your html page:

1. open the page in your program
2. open html source code of the page
3. add several rows of code (<script> tags), For info see: http://deluxe-menu.com/installation-info.html

That's all.
To create and configure your cool dhtml menu use Deluxe Tuner application

(included into the trial package): http://deluxe-menu.com/deluxe-tuner-info.html



Q: Is it possible to change the mouseover font style to bold within the deluxe menu?


A: Unfortunately, JavaScript Tree Menu can't change font weight.
If you want to do that you can paste your own <div> withinitem's text field and change a font yourselves.

For example:

***

function changeFont(obj, over)
{
obj.style.fontWeight = over ? 'bold' : 'normal';
}

  var menuItems = [

["<div onMouseOver='changeFont(this, 1)' onMouseOut='changeFont(this, 0)'>item text</div>", link, ...]

];

***