The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
46 views

Handle site which implements frame busting

I require to open a site in Iframe .... ofcourse thats not a problem.. Problem is that site has implemented the frame busting code <body onload="if(self!=parent){top.location=window.location;}" ...
0
votes
0answers
137 views

open site in iFrame which avoids Frame Busting

I am trying to open some site in iFrame which opens as popup. Some sites does not allow itself to open in iFrame (Frame Busting). I have searched for this . i Have got some solution also like ...
0
votes
1answer
555 views

Show salesforce login form in an iframe

I am unable to show https://login.salesforce.com inside an IFrame. <iframe src="https://login.salesforce.com"/> I am using OAuth between my application and salesforce. For the sake of a ...
0
votes
0answers
79 views

Track events from Cross-domain Iframe [closed]

I'm trying to use events like onfocus,onblur from an iframe which has a different domain than the parent window. Postmessage is not an option as I can't change anything code-wise on the parent window ...
2
votes
0answers
112 views

Framebuster with exceptions

I have a question about writing a frame-buster-buster. I have already read Frame Buster Buster ... buster code needed but I need an extra tweak. My content from my blog at ...
1
vote
0answers
283 views

redirect if frame buster detected

I'm displaying my outbound links with a header from my site, some of my data providers have frame busters in place. What I'm trying to accomplish is; if no frame busting is in place (content loaded ...
5
votes
2answers
891 views

Frame Busting buster not completely working for IE

I've been working on a Frame busting buster (what's in a name, hehe), which kept my users on my page and open a new window with the target URL. I'm using a Lightbox script to display iframes, this is ...
3
votes
3answers
6k views

PayPal integration with iframe-based cart

We use PayPal's Payments Pro NVP API to provide seamless credit card and paypal processing on our site. We've created an iframe-based cart widget that our customers put onto their site so their users ...
1
vote
2answers
571 views

How to stop loading website if it's trying to escape from a frame

So I know that there are many websites out there that try to break from frames (frame-busting) and then there is this whole cyclic "busting frame busters" and "busting frame buster busters" etc. Is ...
1
vote
1answer
986 views

Preventing frame busting with access to page source

So we are loading a page in an iframe. This child page is loaded from a cache on the same domain as the parent. However external assets are not cached locally, and are loaded from the external site - ...
255
votes
19answers
42k views

Frame Buster Buster … buster code needed

Let's say you don't want other sites to "frame" your site in an <iframe>: <iframe src="http://example.org"></iframe> So you insert anti-framing, frame busting JavaScript into all ...