How do I set the frames target from a javascript file?

K

knottr

I need to set the frames target from within a javascript file. I know how to
use HTML href to do it, but I am using pull-down java menus. It defaults to
the current frame and I need to target the whole page.
 
R

Ronx

If *every* link on the entire page is to target the whole page, add
<base target="_top">
into the <head> section of the page.
Otherwise, do as above and specify targets for the links that do not replace
the whole page, or edit the JavaScript file. The JavaScript author may be
able to assist.
 
Top