vote up 0 vote down star

Hi

Is there a way to remove script from site in frame from other domain?

flag
Is it a script intended to prevent you from framing it? – ceejayoz Mar 3 at 21:15

3 Answers

vote up 4 vote down

No. The some-origin policy means that code in your page can't access the DOM of the page within the frame if it's from another domain.

If the page within the frame is a page that you control (i.e. both domains are yours) you could, I guess, set that page up so that if a certain querystring were added to the URL, the script would be removed on the server-side. But I'm guessing it's not a page you control.

link|flag
vote up 0 vote down

No, but you can use a proxy to load the content from the other domain and re-serve it from your own (with script removed). I presume you're talking about content that you don't control. (Keep in mind that this may or may not be ethical, depending on the content licensing.)

link|flag
vote up -1 vote down

There is in IE:

<iframe security="restricted" />

But it's generally considered a broken security mechanism and you certainly can't rely on it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.