Menu

#139 LoadPanel not loading complete file w/IE

open
nobody
5
2002-01-29
2002-01-29
No

In loadpanel.js modify line 186 as follows:

Original line:
else if (!lpanel.loadElement.document.isLoading
&& (lpanel.loadElement.document.readyState=='interactive' ||
lpanel.loadElement.document.readyState=='complete')) {

Fixed line:
else if (!lpanel.loadElement.document.isLoading &&
(lpanel.loadElement.document.readyState=='complete')) {

This will remove the check for a readyState of 'interactive' which is true before the file has completed
loading.

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.