Is it possible to change from a default target in javascript horizontal menu?
Return to Recent Questions
Q:
Is it possible to change from a default target setting for all
links to _self target for onsite links and _blank target for offsite
links?
A:
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","_blank",,"0"],
];
Return to Recent Questions
|