473,386 Members | 1,630 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

busting out of frames with javascript in a way that works with all browsers?

I did a little searching for javascript code that will make a page
"jump out" of frames when the page is loaded. There seems to be many,
many ways to do this and I've added the ones I found to the end of
this post.

Which one should I use? Is there a generally accepted "best" way to
do this that works will all browsers?

....
Krick

if (top != self) {
top.location = self.location;
}

if (window != top) {
top.location.href = location.href
}

if (top.window != window) {
top.location.href = window.location.href
}

if (parent.frames.length > 0) {
parent.location.href = location.href;
}

if (top.location != location) {
top.location.href = document.location.href
}

if (parent.frames.length >= 1) {
window.top.location.href = "index.html"
}
Jul 23 '05 #1
5 6714
On 5 Oct 2004 15:00:10 -0700, William Krick wrote:
..Sub: busting out of frames with javascript in a
way that works with all browsers? ... Is there a generally accepted "best" way to
do this that works will all browsers?


No. Not all browsers have JS enabled.
(I just wanted to check that you realise that.)

As for the ways to break out of frames in JS enabled browsers,
I'll be listening to what the experts say, and looking over
your suggestions. I am sick of serving up content for other
people's sites, and anything that can reduce that is most welcome.

--
Andrew Thompson
http://www.PhySci.org/codes/ Web & IT Help
http://www.PhySci.org/ Open-source software suite
http://www.1point1C.org/ Science & Technology
http://www.lensescapes.com/ Images that escape the mundane
Jul 23 '05 #2
William Krick wrote:
I did a little searching for javascript code that will make
a page "jump out" of frames when the page is loaded. There
seems to be many, many ways to do this and I've added the
ones I found to the end of this post.

Which one should I use? Is there a generally accepted
"best" way to do this that works will all browsers?
If you are breaking out of frames they will presumably be other people's
frames and cross-domain/same-origin security restrictions will apply.
The extent to which you can read properties of the containing frame may
be more or less restricted because of this.

It is important that your code does not cause an exception due to
security restrictions else it will not only not escape the frame, but it
might not work properly at all.
if (top != self) {
(top != self) and (top != window) are equivalent, as are (parent !=
self) and (parent != window). Top, self, window and parent are
properties of your global/window object so there should be no problem
reading them and comparing them.
top.location = self.location;
This might error because the - location - property refers to an object.
Although you can (and probably should) set it with a sting value this
assignment is setting it to an object reference. Probably the -
self.location - object reference will be type-converted to a sting for
the assignment, but I wouldn't want to trust to that in this context.
Instead assign the - href - (string) property of your location object to
the location property of the top or parent frame:-

top.location = self.location.href;
-or:-
parent.location = window.location.href;
(and related permutations)

- assigning to the - location - property in the parent/top frame is not
normally a security issue as at just unloads and replaces the entire
parent/top document.
}

if (window != top) {
top.location.href = location.href
Assigning to the href property of the - top.location - object might be
subject to security restrictions (you may be denied access to the
contents of top.location, or read access to top itself (you have to have
read access to resolve - top.location - to an object reference)).
if (top.window != window) {
top and top.window should refer to the same object, but trying to read
properties of top might be restricted.
top.location.href = window.location.href
}
This assignment is functionally equivalent to the previous example.
if (parent.frames.length > 0) {
Reading properties of the - parent - and/or - parent.frames - object may
be subject to security restrictions.
parent.location.href = location.href;
}

if (top.location != location) {
As indeed might comparing properties of the - top - or - parent - object
with properties of your own global/window object, if they are from
different domains.
top.location.href = document.location.href
}

if (parent.frames.length >= 1) {
Again, reading properties of the - parent - and/or - parent.frames -
object may be subject to security restrictions.
window.top.location.href = "index.html"
}


There is more maintenance in using string literals (different code on
each page and a need to update it if you decide to change the page name
(or copy and paste to create a new page). While not only do versions
that assign location.href not need to know their file name, they can all
be imported with a common site-wide JS file.

Compare the self or window properties of your global/window object with
its top or parent properties and if they differ assign the location.href
string from your global/window object to the location property of the
top or parent object. Something like:-

if(parent != window){
parent.location = location.href;
}

Richard.
Jul 23 '05 #3
JRS: In article <cj*******************@news.demon.co.uk>, dated Wed, 6
Oct 2004 00:13:52, seen in news:comp.lang.javascript, Richard Cornford
<Ri*****@litotes.demon.co.uk> posted :

If you are breaking out of frames they will presumably be other people's
frames and cross-domain/same-origin security restrictions will apply.
The extent to which you can read properties of the containing frame may
be more or less restricted because of this.

It is important that your code does not cause an exception due to
security restrictions else it will not only not escape the frame, but it
might not work properly at all.

If one's page has without permission been framed, one may want to de-
frame it. But if one cannot de-frame it one might prefer not to display
it at all, or to display a considerably different content ...

Pseudo-code :

if (framed) and (not-authorised) then
body.HTML = "<big>Framed display not permitted!<\/big>"
// which should stop what follows it from showing.

Or even if (framed) and (not-authorised) then while true do ;

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Jul 23 '05 #4
On Wed, 6 Oct 2004 15:25:04 +0100, Dr John Stockton
<sp**@merlyn.demon.co.uk> wrote:

[snip]
Or even if (framed) and (not-authorised) then while true do ;


But wouldn't that punish the user by hanging the browser? It wasn't their
decision to steal your page.

Mike

--
Michael Winter
Replace ".invalid" with ".uk" to reply by e-mail.
Jul 23 '05 #5
JRS: In article <opsfh1a50rx13kvk@atlantis>, dated Thu, 7 Oct 2004
12:07:03, seen in news:comp.lang.javascript, Michael Winter <M.Winter@bl
ueyonder.co.invalid> posted :
On Wed, 6 Oct 2004 15:25:04 +0100, Dr John Stockton
<sp**@merlyn.demon.co.uk> wrote:

[snip]
Or even if (framed) and (not-authorised) then while true do ;


But wouldn't that punish the user by hanging the browser? It wasn't their
decision to steal your page.


Well, is there not always a way to stop the browser window? Back, Stop,
Home, or wait for a browser timeout? There should be.

It's an indirect way of punishing the offender, by getting his readers
seriously annoyed with the consequences of unauthorised framing, so that
they become ex-readers.

But I leave it to the reader of my news article to decide what his pages
should do - quietly unframe his page, quietly decline to display,
complain and display, sweep the background through an inartistic choice
of colours, seize up, ...

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.com/faq/> JL/RC: FAQ of news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Jul 23 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: les | last post by:
Hello, I just wonder what are the implications to use frames to build portal. I've seen some sites that are quite fast with frames but I just wonder if there are hidden "costs". I've tried to...
1
by: Bill H | last post by:
I run a dbms application that interfaces with the web. This module creates a frames page with two frames ('main' and 'mwinfoframe'). All communication with the dbms is routed through the...
3
by: Jan Ebbe Jensen | last post by:
Hi I have tried the following code. It works in Mozilla. In IE I'm not able to enable DesignMode? What have I done wrong? It says that obj is undefined? Can anyone help me please.
20
by: Tammy | last post by:
What would be a good alternative to using frames? I need something that will section my webpage into two halves and can change both frames on a single click. Thanks in Advance, Tammy
5
by: Dfenestr8 | last post by:
Hi. I'm designing a site, and I'm trying find a way of browsing it without using frames, so I can test the <noframes> </noframes> tags. I use a linux mandrake 10 system, with KDE 3.2. Is there...
11
by: Jamie Dulaney | last post by:
I'm working on a website that uses frames. Some of the pages that belong in the 'main' frame (not the header (top) or contents (side)) need to be SSL encrypted. I have no problems in invoking...
3
by: qwerty | last post by:
I´m new to ASP.Net. My workmate has some experience with it. He claimed that in ASP.Net working with frames is much simpler than it was ASP. I asked explanation but he couldn't give me such. (a...
1
by: Keimo Repo | last post by:
Hello I would need some advice, even just speculations... A customer of ours insists on a couple of customer specific design features for our existing multi-customer web application: - A...
12
by: MartinRinehart | last post by:
They just don't get no respect. "In the early days of JavaScript, multiframe and multiwindow web applications were fairly common. Now, web design has turned strongly against the use of frames...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.