|
|
FAQ
Return to FAQ
Q: Why are all the links opened in a new window? How can I change the target parameter of links?
A: To assign a target, general for all links, you should use the following parameter:
var itemTarget = "value";
Available options for value are: _self,_blank,_top,_parent,_search or a name of a frame.
It's also possible to determine different targets for every single item in the menuItems parameters:
var menuItems = [
[text, link, icon1, icon2, tip, TARGET],
];
For example:
var menuItems = [
["Home", "home.html", "icon1.gif", "icon2.gif", "Home Page", "_blank"],
];
Return to FAQ
|