|
|
|
Can a css menu item that expands the submenu items when selected work as link?
Return to Recent Questions
Q:
Can a css menu 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 pop up menus and submenus in JSP?
- May 22, 2009 - I would like to have links of javascript menu navigation to our website when javascript turned off.
- May 27, 2009 - The submenu of java script tree menu disappears, it goes BEHIND the flash and can't be seen.
- May 29, 2009 - Will this dropdown menu java work for us, as we use IFrames and Frameset?
- Jun 16, 2009 - I want to add a javascript link with onclick event to the html floating menu
- Jul 04, 2009 - How exactly does such drop down menu in javascript parameter as dmAJAXCount work?
- Jul 13, 2009 - Flash in Firefox disappears behind the submenus of css ul menu.
- Jul 29, 2009 - Is there any way to change the font size of the submenu links in menus pop up?
- Aug 01, 2009 - The copy/paste and the CTRL + C/V & Insert keys don't seem to work in java menu script.
- Sep 04, 2009 - How to use javascript calls when the link is clicked in the vertical expanding menu?
- Sep 04, 2009 - Can't assing links to our favorite template in the javascript navigation
|