Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SCRIPT5: Access is denied. 1

Status
Not open for further replies.

1DMF

Programmer
Jan 18, 2005
8,795
0
0
GB
Why is IE showing this error in the console and what is it trying to tell me.

The line number is
Line: 1, Column: 1

But that is
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">[/URL]

Thanks,
1DMF

"In complete darkness we are all the same, it is only our knowledge and wisdom that separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"
Free Electronic Dance Music
 
are you loading resources from an external domain via an iframe?
 
Yes, Javascript will consider subdomains as different domains. You can fix that with

Code:
document.domain="common domain";
On both sides.

Cheers,
Dian
 
and note that there is a jquery bug that was fixed in 1.10.2 if loaded from an iframe.
 
sorry - i don't the version history of the bug. My recollection is that it was introduced in 1.10 and fixed in 1.10.2 but it may well have been in an earlier version too.

if you serve jQ from the same server rather than a CDN then yes, that should work. if you're serving from a CDN then the document.domain thing won't work with versions that have the bug in it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top