I can not createPopup windows by clicking on a menu.
Return to Recent Questions
Q:
First of all, your product is amasing!
I can not create popup windows by clicking on a menu.
For example:
MainMenu:     Home > Favorites > Fun > About us
Sub Menu:      - Portal
                       - Games
                       - Forum
                       - Chat
By clicking on �Games� Button of sub menu I would like to open a popup window,
Not regular window with navigation, scroll and so on.
A:
You can use your own javascript functions in the menu items.
You should paste "javascript:some_function()" into item's link field, for example:
var menuItems = [
["text", "javascript:your_function(...)", ...]
];
Return to Recent Questions
|