Php Javascript Menu Tree Category Product by Deluxe-Tree.com
Php Javascript Menu Tree Category Product


Buy Now!  Free Trial Download

Menu Screenshots Php Javascript Menu Tree Category Product

Php Javascript Menu Tree Category Product Sliding Menu Systems Tree

Features Php Javascript Menu Tree Category Product

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
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
Menu Tree Relative Position Php Javascript Menu Tree Category Product
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".
Easy Setup
  • De Luxe Tuner. GUI interface to create your php javascript menu tree category product menus easily and in no time
  • Sensible menu parameters for manual editing
Cost Effective
Buy Now!  Free Trial Download

Javascript Tree Menu. Expandable Menu.

  • These effects will make your menu more attractive and stylish. Among available transitional effects there are such as fade, mosaic, random dissolve, slide out and many others.
  • Create individual styles and assign them to any submenu and item. Use individual styles to achieve stunning effects!

Recent Questions Php Javascript Menu Tree Category Product

Q: Will tab titles ever automatically wrap?

Is there a way to force a wrap of a tab title in a tab menu java?


A: No, unfortunately, tab menu cannot wrap item text automatically.
But you can use
tag within item text, for example

  var bmenuItems = [

["Item 1 text <br> text text text <br> text text text ","", "", "", "", "", "", "", "", ],
["Item 2","", "", "", "", "", "", "", "", ],
["Item 3","", "", "", "", "", "", "", "", ],

];


Q: I have looked through the FAQS on your site, but can’t find a clear answer to this questions:

Can a menu submenu dhtml be triggered to an open state upon onload?

I can get the top level menu over state to show, but the drop downs won’t open.

A: Unfortunately it is not possible to highlight the pressed menu submenu dhtml itemin JavaScript Tree Menu now. You can highlight the top items only.



Q: Can I use javascript to get the object (getElementByID). If not howdo I hide my dropdown menu on print?

A: You can add a new button to print your page and call onClick event, soyou should write:
<body ....
onClick="document.getElementById('dm0m0').style.visibility='hidden'; window.print();">
...
</body>
Or you can use the same javascript code from your menu item.

For example:
  var menuItems = [
["Print", "javascript:document.getElementById('dm0m0').style.visibility='hidden';
window.print();", icon1, icon2],
];
But if you want to hide the menu when your customers push "File/Print"you should write so:
You must create two functions, for example:

function myprint()
{ document.getElementById('dm0m0').style.visibility='hidden';
window.print();
}
function myprint2()
{ document.getElementById('dm0m0').style.visibility='visible';
window.print();
}
You should add this functions into your code.

And then you must write so:

window.onbeforeprint = myprint;
window.onafterprint = myprint2;


Q: I have seen menu like this when i scroll the page the manu will scroll follow.....can delux menu do that ?
If can how ?


A: You should use floatable feature.

You should set absolute coordinates for your menu
  var absolutePos=1;
  var posX="10px";
  var posY="10px";

  var floatable=1;

You should also check that you have dmenu_add.js file in the samefolder with dmenu.js.