Break Out of Frames Using JavaScript
I thought frames went out of style a decade ago but apparently everyone feels the need to duplicate the Digg Bar. I don't trust these framed services so I choose to use a JavaScript snippet that prevents my site from being in someone else's frame.
The JavaScript
if (top.location != self.location) {
top.location = self.location;
}
Don't let your site be framed in! Use this JavaScript snippet!
![6 Things You Didn’t Know About Firefox OS]()
Firefox OS is all over the tech news and for good reason: Mozilla's finally given web developers the platform that they need to create apps the way they've been creating them for years -- with CSS, HTML, and JavaScript. Firefox OS has been rapidly improving...
![Write Better JavaScript with Promises]()
You've probably heard the talk around the water cooler about how promises are the future. All of the cool kids are using them, but you don't see what makes them so special. Can't you just use a callback? What's the big deal? In this article, we'll...
![Create a Simple Slideshow Using MooTools]()
One excellent way to add dynamism to any website is to implement a slideshow featuring images or sliding content. Of course there are numerous slideshow plugins available but many of them can be overkill if you want to do simple slideshow without controls or events.
![WebKit Marquee CSS: Bringin’ Sexy Back]()
We all joke about the days of Web yesteryear. You remember them: stupid animated GIFs (flames and "coming soon" images, most notably), lame counters, guestbooks, applets, etc. Another "feature" we thought we had gotten rid of was the marquee. The marquee was a rudimentary, javascript-like...
haha, I really like this. I agree with your thoughts on frames.
I thought I’d seen that for the last time last millennium! Although I also agree with the nasty framed services – so might have to join in and add it to my site too :) Obvious, but very easy to not think of
This is the very same basic technique for preventing clickjacking. Basic, because it doesn’t work in IE, if your site is framed with security=”restricted”
As seen on The Good Parts… shouldn’t you use !== instead of != for comparisons like this one?
d.
haha!
this is first javascript that i learn when i was baby :D
David,
i agree. I saw a few articles ranting about the Digg bar when it came out and one of them had this same solution – so I added it. Works great!
Just had an idea though – what if you could recognize where the bar was coming from (like Digg) and get rid of the bar but add some little area to your page that recognizes the user and the functionality they might want. For Digg, just add a little Digg this button or whatever the Digg bar offers. Facebook, Hootsuite, a few others that I know of.
It would be similar to the WP Greet Box Plugin that gives a quick message depending on where visitors come from.
This way you lose the bar, but keep the sharing aspects and make it look like it fits your site.
-Marty
I like frames sometimes. I think the Diggbar is really useful. However frames can be over used like you say.
I use this on one of my sites. It works OK and you need just 2 lines of javascript. Personaly I hate frames. This was popular years years ago.
Wow, haven’t seen this piece of code in 8-10 years, when using frame was the norm.