Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i wrote that simple function and it's works well but when i test it on chrome with javascript console it return this error:
Unsafe JavaScript attempt to access frame with URL http://www.mydomine.com/currentpage from frame with URL http://www.iframedomine.com/page. Domains, protocols and ports must match. can be fixed in some way?

that is how i generate iframe

this.frame = function(url, w, h) {
    this.inizialize();      
    this.iframe = $(document.createElement("iframe")).attr("src", url).attr("frameborder", '0');
    this.resize(w, h );
    this.box.html(this.iframe); 
    return this;
}
share|improve this question

1 Answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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