Menu Desplegable Horizontal Javascript by Deluxe-Menu.com
Menu Desplegable Horizontal Javascript

Menu Screenshots

Menu Desplegable Horizontal Javascript Scroll Down Menu Javascript

Features

Professional Look-n-feel
  • Entirely customizable look-n-feel
  • A lot of pre-designed menu desplegable horizontal javascript samples
  • Hundreds of visual effects
  • Custom CSS styles can be applied for all menu settings
High Performance
  • AJAX menu loading - loads web menu data from the server "on-the-fly".
  • Commonly loads quicker than other html page elements
  • UL/LI items structure
  • Runs well with an unlimited number of submenus and items
Dhtml Menu For Frames Menu Desplegable Horizontal Javascript
Seamless Integration
  • Cross-frame support - menus work on frameset-based pages
  • 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
Unrivalled Features
  • Scrollable, dragable, floating, right-click menus
  • Keyboard navigation - press Ctrl+F2 to enter the menu
  • 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".
  • Search feature - add the search area in the menu and type symbols. The found words will be higlighted.
  • Sound support!
Cost Effective



2.0 Buttons by Web-Buttons.com v3.0.0

Javascript Menu. DHTML Menu.

  • Use images for backgrounds of submenus and items, icons, arrows. Using web images you can create menus completely based on graphics.
  • Design both horizontal and vertical menus and submenus with any amount of menus on a single page.
  • Place any HTML code inside the menu item - be it a flash-object, form, picture, or text. This ability lets you to build various menus of any complexity.
  • Submenus can be shown in 4 ways: - From left to right and also from left to right + upwards. - From right to left and also from right to left + upwards (e.g. for right-to-left languages).

Recent Questions

Q: Couple last questions. I have 25 icons (images) on one page. Each image needs it's own popup menu. Obviously I now have the first one working. How and where do I define IDs number 2-24 ? Does each icon need it's own "source_" file?

Also, where is it defined that the popup menu is ID 1 ?


A: > Also, where is it defined that the popup menu is ID 1 ?
Each menu has ID. The ID's number starts with 0.

So, when you have several data files on your page you have such ID's:

<script type="text/javascript" language="JavaScript1.2" src="menu-top.js"></script> // ID - 0

<script type="text/javascript" language="JavaScript1.2" src="source_pop.js"></script> // ID - 1

<script type="text/javascript" language="JavaScript1.2" src="source_pop1.js"></script> // ID - 2

<script type="text/javascript" language="JavaScript1.2" src="source_pop2.js"></script> // ID - 3

<script type="text/javascript" language="JavaScript1.2" src="source_pop3.js"></script> // ID - 4

and so on.

> I have 25 icons (images) on one page. Each image needs it's own popup menu.
If you want to have different Popup menus (there color, item, text,font and so on) you should create 25 different .js files with yourparameters. And call them from your page, for example:

<SCRIPT language=JavaScript1.2 src="source_pop.js" type=text/javascript></SCRIPT>
<SCRIPT language=JavaScript1.2 src="source_pop1.js" type=text/javascript></SCRIPT>
<SCRIPT language=JavaScript1.2 src="source_pop2.js" type=text/javascript></SCRIPT>
...
<SCRIPT language=JavaScript1.2 src="source_pop24.js" type=text/javascript></SCRIPT>

If you have different item text only you can use one
<SCRIPT language=JavaScript1.2 src="source_pop.js" type=text/javascript></SCRIPT>
file. But you should delete the following code:

  var menuItems = [

["Next","testlink.htm"],
["Prev","testlink.htm"],
["Close","testlink.htm"],
];

dm_init();

and move it to the html page:

<body>
...
<SCRIPT language=JavaScript1.2 src="source_pop.js" type=text/javascript></SCRIPT>
<script type="text/javascript"> //first popup menu ID - 1
  var menuItems = [

["Next","testlink.htm"],
["Prev","testlink.htm"],
["Close","testlink.htm"],
];

dm_init();
</SCRIPT>
<script type="text/javascript"> //second popup menu ID - 2
  var menuItems = [

["Text","testlink.htm"],
["Text1","testlink.htm"],
["Text2","testlink.htm"],
];

dm_init();
</SCRIPT>
<script type="text/javascript"> //third popup menu ID - 3
  var menuItems = [

["New_Text","testlink.htm"],
["New_Text1","testlink.htm"],
["New_Text2","testlink.htm"],
];

dm_init();
</SCRIPT>
...
<script type="text/javascript"> //twenty fourth popup menu ID - 3
  var menuItems = [

["New","testlink.htm"],
["New","testlink.htm"],
["New","testlink.htm"],
];

dm_init();
</SCRIPT>

<img src="testimage.gif" width=200 onClick="return dm_popup(1, 1000, event);" style="cursor: hand;">
<img src="testimage.gif" width=200 onClick="return dm_popup(2, 1000, event);" style="cursor: hand;">
<img src="testimage.gif" width=200 onClick="return dm_popup(3, 1000, event);" style="cursor: hand;">
...
<img src="testimage.gif" width=200 onClick="return dm_popup(24, 1000, event);" style="cursor: hand;">
...
</body>



Q: Our company has been using the trial version of Deluxe Menu and was satisfied enough with initial integration efforts to acquire the license version.

We are interested in making our main dhtml rollover menu items a constant width, but the data.js parameters (  var menuWidth="800px";   var menuHeight="30px";   var smWidth="";   var smHeight="";) don't seem to give us that capability. We dynamically remove main menu items based on user roles and when we do the main menu always re-sizes and the remaining main menu item widths no longer match our sub-menu widths. We're able to adjust for this by using the API but that seems to be a lot of unnecessary coding. If we could keep each main menu item a fixed width, our sub-menu widths would not have to change.

Do you have information on how to accomplish fixed main menu item widths, even better would be an example?

A: Actually you can specify the width and of all or individual dhtml rollover menu items or submenus usingIndividual Item/Submenu styles.

Q: Things are mostly working great. I want my menu to appear centered at the top the page. Here's the code:

<table style="text-align: left; width: 100%;" border="0" cellpadding="2"cellspacing="2">
<tbody>
<tr>
<td style="width: 100%; text-align: center;"><script type="text/javascript" src="navbar.js"></script>
</td>
</tr>
</tbody>
</table>

The table appears at the far left edge of the window. I tried with both absolute (x=20, y=10) and relative (both x and y unset) coordinates. Help!


A: If you want to center the menu paste itwithin the <div > or <table> with a static position and specify a center alignment for it, for example:

<DIV align=center>
<SCRIPT src="data/data.js" type=text/javascript>
</SCRIPT>
</DIV>

<table width=800>
<tr>
<td align=center width=600>

More Q&A

Spanish

182, Disable javascript, Deshabilitar javascript ..... Seleccione una entrada en el menú desplegable de la barra de direcciones con las flechas del ... Scrolls horizontal de la página web. 351, Type a search engine keyword, press Space,

En mi pagina web www.protdesign.com vista con google crhome se

... se pierde el menu desplegable , con ie8 y mozilla no , que ? ... del div contenedor (height y width) , el menú me quedó horizontal

problema con Barra de heramientas - RhinoGold

17 Nov 2010... de arriba aparece un desplegable de rhinogold desde donde puedes ... el poner la barra de herramientas en horizontal y ubicarla cada vez

MENU HORIZONTAL DESPLEGABLE - sitio de internet gratis

He puesto éste código para todos aquellos WebMaster que deseen colocar un menu horizontal desplegable, modificable y que funcione con el

sitio de internet gratis

[Codigo Css y Javascript]Galeria PhotoSlide .... [Diseño para CSS-Design] BlueLife Con Menu Desplegable! ... [Código CSS] Menu horizontal sencillo

[split] dropdown menu bar ˙(as on mybb*run*way)

Nov 13, 2010 ... Comienza menu desplegable --> ... <script type="text/javascript" src=" jqueryslidemenu.js"></script> ... finaliza menu desplegable -->

XOOPS España - Multimenu 2.08 y barra de menu desplegable

Multimenu 2.08 y barra de menu desplegable horizontal ... Buenas, he instalado multimenu 2.08 en xoops 2.4.4 y tengo creado en menu horizontal desplegable. ... How To · Nueva Captcha para Xoops basada en Javascript

"Improving the translator of the Google toolbar? - Toolbar Help

Feb 8, 2010 ... Para encontrar el número de versión, haga clic en el icono de la barra Google llave de menú desplegable y seleccione "Acerca de la barra

En Castellano / In Spanish :: Forum :: Indexhibit

Para poner el men√∫ horizontal tienes que modificar ficheros de php. .... selecciona el m√©todo de visualizaci√≥n "dos columnas" del desplegable. ... < ?php if defined'SITE' exit'No direct script access allowed' ..... cada categor√ ≠a ya que el menu de categorias+exhibits se construye con una

Mensaje - sitio de internet gratis

me puedes acer una plantilla de musica¿? que tenga menu horizontal

Mensaje - sitio de internet gratis

pdt: recomiendo crearse un MENU HORIZONTAL DESPLEGABLE por que en el titulo de la página, se les vera el nombre mas el boton junto

Using Moodle: Changing the signup.php page question

I used also a javascript autoSubmit() function on the <select ... on drop down menu and insert their values into the mdl_user table ?

Joomla! • View topic - Menus desplegables en Joomla! 1.5

Esa plantilla trae menu desplegables ... la lista de submenús, no que se vean, pues lo que quiero es poner todos los menús en horizontal

Forum Swt Menu Background Color Template - Javascript Menu Template

Desplegable Menu Java dynamic javascript menu apymenu · Css Menu Vertical Toolbar Template javascript horizontal menu · Animated Javascript Menu javascript

¿Como crear una barra inicio desplegable y modificarla a gusto en

20 Ago 2010 ... Crear una barra de menu desplegable pudiendo modificando yo el ... un ejemplo de menu http://ciudadblogger.com/2009/09/menu-horizontal-con-

Www Wysiwygwebbuilder Com Forum Collapsible Menu : DHTML FAQ

Horizontal or vertical orientation - Relative/Absolute menu position .... Javascript Crear Menu Desplegables Www Wysiwygwebbuilder Com Forum Collapsible

Mi Menu horizontal al desplegarse tapa parte de un bloque de

21 Dic 2010 ... Mi Menu horizontal al desplegarse tapa parte de un bloque de ... evitar que el menu desplegable tape una parte o la totalidad de un anuncio