Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

Learn More

iframe keeps breaking out and going to source website

  • 3 回覆
  • 2 有這個問題
  • 3 次檢視
  • 最近回覆由 cor-el

more options

I have an iframe that is "breaking out" of the iframe and going to the source page directly in FireFox. It works the way it is intended in Chrome. The problem demonstrates itself here: www.jamestalbott.com/nayte.html

It should stay in jamestalbott.com/nayte.html, but goes to the source page.

I have the sandbox parameter in the iframe, but that does not seem to help.

Thank you for your assistance, Jay Talbott

I have an iframe that is "breaking out" of the iframe and going to the source page directly in FireFox. It works the way it is intended in Chrome. The problem demonstrates itself here: www.jamestalbott.com/nayte.html It should stay in jamestalbott.com/nayte.html, but goes to the source page. I have the sandbox parameter in the iframe, but that does not seem to help. Thank you for your assistance, Jay Talbott

所有回覆 (3)

more options

You forgot one 't': src="htp://www.msn.com" -> src="http://www.msn.com"

<iframe src="htp://www.msn.com"> </iframe>

由 cor-el 於 修改

more options

Thanks for your quick response. That was just me trying anything in frustration. What I really want to do is to be able to execute the html in the attached file and not have it break out to the source page:


Thanks again. Jay

由 JamesTalbott 於 修改

more options

There is code on the myclikclok.com/whitelabel/ page to reload the page in its own tab.

<script language="JavaScript" type="text/javascript">
<!--
if(window.top!=window.self){
window.top.location = '/whitelabel/';
}
function linkSubmit (action)
{
  document.LOGIN.linkaction.value = action ;
  document.LOGIN.submit() ;
}
-->
</script>