• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

META to break frames - does it work?

meow

Rebutted, enshrined
NLC
Is this supposed to work?

<META HTTP-EQUIV="Window-target" CONTENT="_top">
 
Depending on what you mean, it does for me. That would set all the links to be targeted _top, so when you click one of them it breaks out of the frameset (be there one), but if you mean does it do it automatically, it doesn't for me.
 
Doesn't at all for me. :(
I haven't tried this one before. Could it have to do with that I test within the same site with an relative URL?
That is, link in frames page x, frame a to page y, <a href="y.html">
 
You could use javascript to break out of frames.
Put this in the head section:
Code:
<SCRIPT LANGUAGE="JavaScript">
<!-- 
function FrameBuster(){
if (top !=self)
top.location=self.location;
}
// -->
</SCRIPT>
And add this in the body tag:
Code:
<body [COLOR=red]ONLOAD="FrameBuster();return true"[/COLOR]>
 
Originally posted by Cyber Chao$
i hope your not using this to remove banners from fwps :rolleyes:

as in cheating hosts? you're the one who created cheat.marhost.com :p
 
It may surprise you Cyber Chao$, but most things on the web have another purpose than cheating. :D
 
Originally posted by Cyber Chao$
no, it doesnt surprise me. i know that. i seriously need something to do.

how about some constructive this time? ;)
 
why don't you...experiment with HTML graphics (developed by microshaft)... it only works in IE i hear.
 
I don't use this to cheat hosts, only to get rid of frames when a site put a links to my site within a frame, like hotmail do to links.
 
Back
Top