acess denied "doc = this.IFrame.contentWindow.document;"

  • Follow


I am trying to implement the busybox sample from
// From Mark Wagner
// http://blogs.crsw.com/mark/articles/642.aspx

When I get to this line I get an access denied error. Could someone
give me an idea why this might be?


Here is the entire function

CODE::

BusyBox.prototype.GetIFrameDocument = function()
{
   var doc;

   if( this.IFrame.contentDocument )
      // For NS6
      doc = this.IFrame.contentDocument;
   else if( this.IFrame.contentWindow )
      // For IE5.5 and IE6
      doc = this.IFrame.contentWindow.document; // ERROR HERE
   else if( this.IFrame.document )
     // For IE5
      doc = this.IFrame.document;
   else
// TODO: Confirm this should be the default
      doc = this.IFrame.document;
   
   return doc;
}

END CODE::

0
Reply gslim (2) 5/9/2006 5:35:24 PM

gslim@blizzardice.com wrote:
> I am trying to implement the busybox sample from
> // From Mark Wagner
> // http://blogs.crsw.com/mark/articles/642.aspx
>
> When I get to this line I get an access denied error. Could someone
> give me an idea why this might be?

Cross-domain security. All pages have to be from the same domain where
"the same domain" means that the part "http://www.bogus.com" is
identical. The differences can start only after ".com"

0
Reply VK 5/9/2006 5:43:12 PM


1 Replies
338 Views

(page loaded in 0.047 seconds)

Similiar Articles:






7/28/2012 10:11:05 AM


Reply: