|
|
I would like to know how to put the items for the popup menu on multiple lines
Return to Recent Questions
Q:
I would like to know how to put the items for the popup menu on multiple lines
(i.e. create a line feed), how do I tell my code to start a new menu
item on the NEXT line?
A:
There are 2 ways to do that:
1. set
var noWrap=0;
2. use tags, for example:
var menuItems = [
["|Here is where <br> I would like to have a line<br> feed",,"","", "", "", "", "", "", "", "",],
];
Return to Recent Questions
Related:
- Sep 02, 2006 - Little vertical spacers between menu items in the drop down menu.
- Sep 26, 2006 - Why is the submenu has a different colour than menu items in the javascript menu bar?
- Oct 01, 2006 - All of the items in html pull down menu are different sizes.
- Oct 06, 2006 - How can I use right-to-left languages in javascript popupmenu?
- Oct 26, 2006 - I would like to load an iframe into one of the items in oncontextmenu.
- Oct 28, 2006 - Subitems of the mouseover menu don't close when the mouse goes away...
- Nov 03, 2006 - I want to use a Flash icon with sound next to the menu items in javascript list menu...
- Nov 10, 2006 - I want to set the status bar messages to another than the link text from the xp menu items?
- Nov 19, 2006 - How to display my javascript top menu without a border, but my subitems all have a border.
- Nov 19, 2006 - Can I create a javascript menu code with one line of the subitems?
- Nov 22, 2006 - I cannot get the background color of the html popup menu to change
|