Say I'm testing a site on the sub-folder of a server, e.g. http://12.123.12.12/domain.tld/. When I'm on the root page, I can happily do a
$('#dummy').load('http://12.123.12.12/domain.tld/page.html')
(A callback function alerting a success message would fire.) However, if I try
$('#dummy').load('http://12.123.12.12/domain.tld/folder/page.html')
I get the 'permission denied' error only in IE (same origin policy error).
I get the same success/failure if I omit the IP address, i.e. $('#dummy').load('/domain.tld/...'). I have no idea why IE would behave like this; it's just a subfolder. (In fact, it's Wordpress with a .html extension plugin, but I can't see that being the issue.)
edit: It turns out I get the permission denied only when loading the page that I'm currently browsing. For instance, assume my browser is pointed at http://12.123.12.12/domain.tld/folder/page.html, if I then try
$('#dummy').load('http://12.123.12.12/domain.tld/folder/page.html')
then the error occurs.