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 >
Text File  |  2007-05-31  |  595b  |  25 lines

  1. <script language="JavaScript">
  2.  
  3. var lastidx=0;
  4. var itxReloadImageInterval=setInterval("itxReloadImages(self)",1000);
  5.  
  6. //Forcing loading images
  7. function itxReloadImages(r)
  8. {
  9.   var i,s;
  10.  
  11.   for(i=lastidx;i<r.document.images.length&&i<(lastidx+50);i++)
  12.   {
  13.    s=r.document.images[i].src;
  14.    if((!r.document.images[i].complete||r.document.images[i].fileSize<0)&&r.document.images[i].width>2)
  15.    {
  16.     r.document.images[i].src='';
  17.     r.document.images[i].src=s;
  18.    }
  19.   }
  20.   lastidx=i;
  21.   if(lastidx>=r.document.images.length) clearInterval(itxReloadImageInterval);
  22. }
  23.  
  24.  
  25. </script>