home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 July & August
/
PCWorld_2007-07-08_cd.bin
/
komunikace
/
maxthon
/
mcombo.exe
/
Maxthon.exe
/
2052
/
MAX
/
FORCEPIC
< prev
next >
Wrap
Text File
|
2007-05-31
|
595b
|
25 lines
<script language="JavaScript">
var lastidx=0;
var itxReloadImageInterval=setInterval("itxReloadImages(self)",1000);
//Forcing loading images
function itxReloadImages(r)
{
var i,s;
for(i=lastidx;i<r.document.images.length&&i<(lastidx+50);i++)
{
s=r.document.images[i].src;
if((!r.document.images[i].complete||r.document.images[i].fileSize<0)&&r.document.images[i].width>2)
{
r.document.images[i].src='';
r.document.images[i].src=s;
}
}
lastidx=i;
if(lastidx>=r.document.images.length) clearInterval(itxReloadImageInterval);
}
</script>