I'm running into issues with jQuery BBQ in IE7 and IE8 compatibility mode.
history_set = function( hash, history_hash )
var iframe_doc = iframe.document, //this is the line that the error reports
domain = $.fn[ str_hashchange ].domain;`
I get an "Access Denied" on the line marked above.
I've heard this can be caused by the iframe having a domain issue, so I set
document.domain = "mydomain.com";
but still seeing the issue.
help?