Can the link items NOT open a new window in the vertical menu scripts?
Return to Recent Questions
Q:
I want to use this menu with ASP. Can the link items NOT open a new
window? For ASP the current window needs to be used with whatever value
is in the link parameter.
A:
JavaSript menu uses window.open or href-method depending on the target parameter.
If you set "" or "_self" target the menu uses href-method and if you
set "_blank" or frame name the menu uses window.open and opens your link in a new window.
You should use the following parameter
var titemTarget = "_self";
or
var titemTarget = "";
Please, see also individual items targets, for example:
{|The Team, http://www.domain.co.uk/receptionist.htm, _blank,}
Change "_blank" to "" or to "_self".
Return to Recent Questions
|