In the horizontal drop down menu my html files still open in a new window.
Return to Recent Questions
Q:
I have the following problem. I've set target parameter to "_self".
But my html files still opens in a new window.
A:
Please, check the following parameters:
var itemTarget="_self"; //default target
You can set target parameter for each item.
See menuItems parameter:
var menuItems =
[
["Home","testlink.html","icon.gif","iconover.gif","Home Tip",target,"1"],
["|Our Products","testlink.html","icon1.gif","icon2.gif","Our
Products Tip","_self",,"0"],
];
Try that.
Return to Recent Questions
|