Javascript Tree Js by Deluxe-Tree.com
Javascript Tree Js


Buy Now!  Free Trial Download

Menu Screenshots Javascript Tree Js

Javascript Tree Js Topmenu Tree

Features Javascript Tree Js

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
Professional Look-n-feel
  • Entirely customizable look-n-feel
  • A lot of pre-designed javascript tree js samples
  • Hundreds of visual effects
  • Custom CSS styles can be applied for all menu settings
Tree Menu Moving Javascript Tree Js
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
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".
Cost Effective
Buy Now!  Free Trial Download

Javascript Tree Menu. Expandable Menu.

  • There can be as many submenus as you want.
  • Use a mouse to drag a menu as a usual window.
  • When the page is scrolled the menu remains visible. The Javascript/DHTML Tree can "float" along one or two coordinate axes. After clicking on menu item selected item becomes highlighted.

Recent Questions Javascript Tree Js

Q: I'm trying to put the tree menu within a table per the instructions below, but the menu is not going in the menu but actually going on top of it!


A: Please, check that you don't use absolute position for the Tree Menu.

  var tabsolute = 0;


Q: I recently started using a new software program on my home page and am running into an issue with your drop down menu in css working with this software.

Basically no matter what I change the DmZorder to drop down menu in css always shows up behind the dhtml windows that I am trying to use.

After working with their support team they have stated that they believe the problem exists within the menus and I am attaching a screenshot they sent me.

Can you please assist me in resolving this issue?

A: Try to delete the following properties from #main style:

POSITION: absolute; TOP: 0px; LEFT: 0px;

See the attached example.

Set also units in "px":

  var itemPadding="2px";

It helps to display the drop down menu in css correctly in all browsers.



Q: Is it possible to centere mouse over drop down menu?

A: Check that you set relative position for the menu:
  var absolutePos=0;
  var posX="0px";
  var posY="0px";

Place your menu in DIV or TABLE with center alignment.

Q: Also once you click a link and go to a new page, how do you get the java choice menu tab for that new page to stay the highlighted one?

A: Deluxe Tabs doesn't support API functions which can return theselected tab aslo.

You can set "bselectedItem" and "  var bselectedSmItem" parametersbased on your link before you call your data file.

For example, move "  var bselectedItem" and "  var bselectedSmItem" parametersfrom your data file to your code.

<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
  var bselectedItem=<?php echo $seltabs; ?>;
  var bselectedSmItem=<?php echo $selsmtabs; ?>;
</script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>

You should define seltabs and selsmtabs using server side script.

You can also set it on every page before you call data.js file, forexample:

<TD vAlign=top align=left>
/* Select Tab */
<script type="text/javascript" language="JavaScript1.2">
  var bselectedItem=4;
  var bselectedSmItem=3;
</script>
<SCRIPT src="data.js" type=text/javascript></SCRIPT>
</TD>