- Horizontal or vertical orientation - Filters and Transitional effects - Top items and submenus have a shadow - Relative/Absolute menu position - Deluxe Tuner - visual interface to create and modify dhtml menus easily and in no time. - Unlimited number of sub levels - Status string shows item labels - Special JavaScript API for changing javascript menu "on-the-fly"
Setup menu parameters manually or using De Luxe Tuner. Then add some rows of a code within html page code and your menu is ready!
Use special Java Script methods for: Dynamic changing of items (link, text, icons, arrows and even individual style!). Addition/removing of items or submenus. Disabling and enabling menu items. Getting the info on every submenu, menu, and items. Changing appearance of items. Other coding tricks.
Cross-frame mode lets you to construct full-featured dhtml menus on the pages with frames. But for all that frame set it's not necessary to insert any additional code into all the pages - just specify several extra menu parameters.
Ability to handle the menu from the keyboard via keystrokes.
Q: Thank you for the information. I have been successful in getting the drop down menu select to appear on my index.htm file.
I'm having some problems fine tuning it. I placed the code and files as indicated on the file. What I get is a menu appearing at the top of the page and a link titled: Trial Version where I want the menu to appear.
The other problem I am having is that the drop down menu select is left justified and I would like it to be centered on my page (table).
A:Check that you're using relative position for the drop down menu select. You shouldset:
var absolutePos=0; var posX="0px"; var posY="0px";
Q: Is it possible that a menuitem of the js dropdown menu stays highlighted after clicking and loading the new html site?
A:The menu has only two states normal and mouseover. We'll try to add the pressed state in the future.
You can set a pressed item using Javascript API:
function dm_ext_setPressedItem (menuInd, submenuInd, itemInd, recursion)
Sets a current pressed item. menuInd - index of a menu on a page, >= 0. submenuInd - index of a submenu, >= 0. itemInd - index of an item, >=0. recursion = true/false - highlight parent items.
But notice, to use dm_ext_setPressedItem() you should know ID of selected item and subitem. You can't get this ID after you reload your page. That is why you should write your own code on PHP.
You can also set the correct var pressedItem=1; parameter on each html page.
Q: Dreamweaver navigation bar disappearing behind flash file in Firefox..
A:You should add "opaque" parameter for
Q: A couple days ago I purchased the multi-website license of Deluxe Menu/Tree/Tabs/Popup Window/Calendar for US$149.00
I am having a very hard time getting the popup window to do just a basic function.
All I want is to have a link that I click on the page and the dhtml menu windows pop up.
As it is, the page automatically opens the popup window on loading.
I'm not a Javascript programmer which is why I purchased your product as it seemed I could pick a couple basic values in the GUI and it would create the script and code for me.
It would be REALLY handy if you had a couple of examples of how to create the following:
- Open the popup window upon the page loading
- Open the popup window when the user clicks a link
- Open the popup window when the user mouses over a link
- Close the popup window when the user mouses out
The help section doesn't even provide a menu item for the popup window.
Finding support for it on your site is difficult and what I can find is better suited for someone with Javascript knowledge.
Is there any way you can provide me the code to do this?
Thanks very much for your time and assistance.
A: We have such example on our website: > - Open the popup dhtml menu windows upon the page loading To open the popup window upon the page loading you should set thefollowing parameter: openAfter=0 deluxePopupWindow.attachToEvent(win,'openAfter=0,,,,,') You can find this parameter in Deluxe Tuner. See on-load.zip example. > - Open the popup window when the user clicks a link Create the popup window in Deluxe Tuner and save it as html. UseonClick event for a link.
See how you should write your link: <a class="sampleLink" title="Click to open sample" href="javascript:;" onclick="deluxePopupWindow.open('win', '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN: center\'><B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>', 'Safari Style', 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,middle,right,fade-effect,opacity=1,floatable=yes', 'windows_safari')"><b>this link</b></a> opens a medium-sized dhtml floating window. where (see on-click.js file) 'win' - is winID '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN:center\'> <B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>' - content of your popup window 'Safari Style' - window title 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,middle,right,fade-effect,opacity=1,floatable=yes' - parameters of the popup window'windows_safari' - window skin
Notice that you shouldn't set openAfter parameter in on-click.jsfile: deluxePopupWindow.attachToEvent(win,',,,,,')
> - Open the popup window when the user mouses over a link > - Close the popup window when the user mouses out
You should create such popup in the same way as in the previous point,but use onMouseOver/onMouseOut events.
<a class="sampleLink" title="Click to open sample" href="javascript:;" onMouseOver="deluxePopupWindow.open('win', '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN: center\'><B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>', 'Safari Style', 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,middle,right,fade-effect,opacity=1,floatable=yes', 'windows_safari')"><b>this link</b></a> opens a medium-sized dhtml floating window.
<a class="sampleLink" title="Click to open sample" href="javascript:;" onMouseOut="deluxePopupWindow.open('win', '<DIV style=\'PADDING-RIGHT: 10px; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; COLOR: #d33a3a; PADDING-TOP: 10px; TEXT-ALIGN: center\'><B>Sample content</B></DIV><DIV style=\'font: 13px;text-align: center; color:#666666; \'><EM>This is a simple HTML code for content. Here you may also set link to content page or ID of some element.</EM>', 'Safari Style', 'width=250,height=100,resizable,scrollbars,minimizable,fullscreen,bottom,left,fade-effect,opacity=1,floatable=yes', 'windows_safari')"><b>Open popup window</b></a>
In that I can Add google ads & ads, javascripts, html, ... Hi there- today I tried to include the java script Facebook fan page widget into my Jimdo page. ... un menu de navigation en image, [NAVIGATION] Menu déroulant
21 juil. 2010 ... Je cherche à faire un menu déroulant à trois niveaux sous html/ javascript. Jusque là, tout va bien ! Après quelques recherches (et de
Voila j'ai un ptit problème avec mon menu déroulant. ... <HTML>; <HEAD>; <script language="Javascipt">; function clicMenu(num) ... Mais ton javaScript ne te renvoit pas d'erreur? ca pourrait peut etre t'aider
28 févr. 2010 ... Bonjour, j'aimerais faire un menu déroulant en dessous d'une de mes rubrique .... Dofus</a> <a href="javascript:showHide('menu');">- Guilde</a> <div id="menu " .... Voila ... http://daxulan.olympe-network.com/test.html
Alors voici mon problème ; sous IE6, mon menu ne se déroule pas au passage de ... Je ne suis pas assez à l'aise avec le CSS et le javascript et je n'arrive ... d'un menu en javascript/HTML/CSS [ par marty91410 ] bonjour,
13 août 2004 ... Salut, je voudrais faire en sorte que, lorsque l'utilisateur click sur un objet dans un menu déroulant, il soit rediriger vers une autre page html
Forum pour webmasters, création de sites web avec HTML, XHTML, CSS et Standards W3C. ... Question simple : est-il possible d'obtenir un menu déroulant en css sans le moindre appel à ... PS : attention à la confusion java / javascript
Astuce: Installation d'un menu déroulant pour une navigation rapide: ... Vous pouvez l"insérer dans n'importe quel endroit qui accepte le HTML. .... Ce menu utilise le même CSS et le même JavaScript, donc pour créer le
c'est du javascript, dans se source on trouve ça: ... "zite.php", "template.php" et le script javascript) qui permettent de faire un menu déroulant en ... le code source dt template version html (et pas php) à adapter:
17 janv. 2008 ... Menu déroulant html avec saisie javascript - Forum. Meilleure réponse: bonjour, dans la fenétre validation des données cliquez sur l'onglet alert d'erreur
Je souhaite réalisé un menu déroulant mais inversé c'est à dire que lorsque l'on passe ... Le code javascript permettant d'ouvrir un sous-menu en descendant
18 oct. 2006 ... 02-08-2008; Menu déroulant SPIP/CSS/JavaScript - 06-07-2007 ... que tu recherche http://www.spip.net/rubrique567.html Jette un oeil sur (