When creating dynamically generated pages, you can meet following error in IE browser:
HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917)
That "KB927917" secret code also comes along with
Line: 0
Character: 0
Source: 0
So now you "know" where to dig to.
So I met one. And it was odd, cuz my JS is runing on Jquery's document.ready event, when everything should be ready:
$(document).ready(function(){
... my js ...
});
But it does not make any sense for IE? No. For FF3, Chrome, etc. does, but not for IE. So what does?
$(document).ready(function(){
setInterval("documentIsReallyReadyNowEvenInIE();",1000);
});
function documentIsReallyReadyNowEvenInIE() {
... my js ...
}
Вот-так-то
No comments:
Post a Comment