Andrew D. Gable
First Post
If you've seen how my site's organized (link in SIG), I have all the links relegated to a frame. When linking a URL from a frame, would it be possible for me to get that page to load without the frame (fullscreen)?
Hi Andrew,Andrew D. Gable said:If you've seen how my site's organized (link in SIG), I have all the links relegated to a frame. When linking a URL from a frame, would it be possible for me to get that page to load without the frame (fullscreen)?
<a href="www.somewhere.earth" target="new">Sometext</a>
Firzair said:Code:<a href="www.somewhere.earth" target="new">Sometext</a>
Plane Sailing said:I think target = "top" is probably better... reuses the existing window sans frames, while "new" opens a new window
(from rusty memory... I've not used frames professionally for about six years now)
Cheers
NeuroZombie said:You can also use target="_blank" which makes a new window as well, sans frame. Geez, too many ways to do the same darn thing![]()
TwilightKing said:I absolutely hate visiting a site, clicking a link to an outside page, and having it load with the frame.
The spec is here.6.16 Frame target names
The following target names are reserved and have special meanings.
_blank -- The user agent should load the designated document in a new, unnamed window.
_self -- The user agent should load the document in the same frame as the element that refers to this target.
_parent -- The user agent should load the document into the immediate FRAMESET parent of the current frame. This value is equivalent to _self if the current frame has no parent.
_top -- The user agent should load the document into the full, original window (thus canceling all other frames). This value is equivalent to _self if the current frame has no parent.