admin管理员组文章数量:1417577
I have created a shopping cart site, and i have got two plains for the same issue, but i am not able to track the main problem... They say they get the message "operation aborted, Internet explorer can't open the page" whenever they navigate to any page, and clicking "OK" displays "page cannot be displayed".
Could someone help me out? what could be the reason behind this..
Getting this problem in IE-6,7.
EDIT
I was never reported by this error before. but now I am getting this error very frequently, My site is live and happening, Its an osCommerce Site and i dont know where to make workaround changes in the site?
I have created a shopping cart site, and i have got two plains for the same issue, but i am not able to track the main problem... They say they get the message "operation aborted, Internet explorer can't open the page" whenever they navigate to any page, and clicking "OK" displays "page cannot be displayed".
Could someone help me out? what could be the reason behind this..
Getting this problem in IE-6,7.
EDIT
I was never reported by this error before. but now I am getting this error very frequently, My site is live and happening, Its an osCommerce Site and i dont know where to make workaround changes in the site?
Share Improve this question edited Sep 5, 2016 at 14:06 ivan_pozdeev 36.2k19 gold badges114 silver badges162 bronze badges asked Jun 15, 2010 at 5:04 OM The EternityOM The Eternity 16.2k44 gold badges125 silver badges187 bronze badges 1- Sounds like a timeout... – bschaeffer Commented Jun 15, 2010 at 5:08
3 Answers
Reset to default 5Are you trying to modify the DOM before the page has fully loaded?
I've encounted this problem before. It's caused by javascript. Your writing something into the DOM before the DOM has finished loading.
For example you might have something like:
<script>document.write('hello world');</script>
When it should be like
<script>
window.onload = function() {
document.getElementById('test').innerHTML = 'hello world';
}
</script>
I've run into this a few times.
First time it had to do with manipulating elements before they were closed (as others have mentioned.)
Second time the server had images in a directory that wasn't readable by "everyone" so we had to change the permissions.
本文标签:
版权声明:本文标题:javascript - I am getting error as "operation aborted, Internet explorer can't open the page" - Stack 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745272092a2650954.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论