|
|
I set a target at '_mainFrame' for my menu in html but it opens in its own window.
Return to Recent Questions
Q:
I set a custom target at '_mainFrame' required by Dreamweaver to view in
a particular frame. When I click my button it opens in its own window.
Your thoughts would be appreciated.
A:
Please, check the following code, for example
var itemTarget="_mainFrame";
["Galerie de photos","photos/index.php", "img/arrow_r.gif",
"img/arrow_o.gif", , "_self", , , , ],
or
["Galerie de photos","photos/index.php", "img/arrow_r.gif",
"img/arrow_o.gif", , "_mainFrame", , , , ],
I suppose that now you have such code
["Galerie de photos","photos/index.php", "img/arrow_r.gif",
"img/arrow_o.gif", , "_blank", , , , ],
Return to Recent Questions
|