Recent Questions
Q: Is there a way to capture which dhtml web menu item was clicked and store that information into a database?
A: See how you can find the ID of the clicked item:
var menuItems = [
["Home","javascript:alert(itVar.id)", "", "", "", "_self", "3"],
Q: Do you have a list of which browsers and which operating system platforms that your DHTML Menu is compatible with?
A: Please, see the list of supported browsers.
Windows OS
---------------------------
Internet Explorer 5+
FireFox
Mozilla
Netscape 4.7+
Opera 5+
MAC OS
---------------------------
FireFox
Safari
Internet Explorer
Linux/Unix OS
---------------------------
Konqueror
Mozilla
Q: I have a question, How can I open a new window of a specific dimension?
I Know how to use the “_blank” property to open a new window. But then how can I indicate the size of the new Window?
Can you please help me?
A: You should use a Javascript code with a link field so:
["Text", "javascript:window.open('../Help/Text_Index.htm', 'Help', 'height=450,width=600,scrollbars');"]
Try that.
Q: Using the new version with unmodified menus results in a new frame menu indentation (the left border of the first javascript folding menu entries submenu in a frame menu setup is not aligned with its main menu entry (both in IE 6 and FF 1.5 / Linux)) - possibly we might need to arrange something?
A: I suppose that this is space to document borders. We've set this space, so that yoursubmenus will not look like the part of browser window. If you wantyou can delete that space.
Open dmenu.js file in any text editor and find the following code:
space=15;
Change 15 to 0.
space=0;
Try that.