|
|
Can a drop down menu java script item that expands the submenu items when selected work as link?
Return to Recent Questions
Q:
Can a drop down menu java script item that expands the submenu items when selected also work as a link?
A:
Actually you can't use links for the top items in the XP Style.
But you can write:
["<a href='index.html' class='home'>Home</a>","", "", "", "", "Return to Index page", "", "0", "", ],
["<a href='http://www.domain.uk' class='home'>About Us</a>","", "", "", "", "", "", "0", "", ],
["|Introduction","http://www.domain.uk/introduction.htm", "", "", "", "", "", "", "", ],
And create styles
.home{
color: #FFFFFF;}
.home:hover{
color: #FFBEBE;}
But in that case the submenu and link open when you press "About Us" item. I think that it is not very
good behaviour. You can also try to specify target parameter
["<a href='index.html' class='home'>Home</a>","", "", "", "", "Return to Index page", "", "0", "", ],
["<a href='http://www.domain.uk' class='home' target="_blank">About Us</a>","", "", "", "", "", "", "0", "", ],
["|Introduction","http://www.domain.uk/introduction.htm", "", "", "", "", "", "", "", ],
Return to Recent Questions
Related:
- Apr 25, 2009 - How to work with html navigation bar and submenus in JSP?
- May 22, 2009 - I would like to have links of script for menu to our website when javascript turned off.
- May 27, 2009 - The submenu of drop down menus css disappears, it goes BEHIND the flash and can't be seen.
- May 29, 2009 - Will this dropdown menus work for us, as we use IFrames and Frameset?
- Jun 16, 2009 - I want to add a javascript link with onclick event to the drop down menus in html
- Jul 04, 2009 - How exactly does such sliding menu javascript parameter as dmAJAXCount work?
- Jul 13, 2009 - Flash in Firefox disappears behind the submenus of menus dhtml.
- Jul 29, 2009 - Is there any way to change the font size of the submenu links in windows popup menu?
- Aug 01, 2009 - The copy/paste and the CTRL + C/V & Insert keys don't seem to work in css hover menu.
- Sep 04, 2009 - How to use javascript calls when the link is clicked in the vertical menu using?
- Sep 04, 2009 - Can't assing links to our favorite template in the menu css
|