Results 1 to 2 of 2

Thread: Text and Image Crawler

  1. #1
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default Text and Image Crawler

    1) Script Title: Text and Image Crawler

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...wler/index.htm

    3) Describe problem: In Opera, when navigating to the page after the images are cached, a refresh is required to see the images. When I first wrote this script I believed that Opera should be excluded from a part of the preload/load recognition routine, and at that time this may have been correct. However, it certainly isn't now. This line (around line 150) in the crawler.js file should be changed:

    Code:
        if(typeof ims[i].complete == 'boolean' && ims[i].complete && !window.opera)
    to:

    Code:
        if(typeof ims[i].complete == 'boolean' && ims[i].complete)
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Thanks for the heads up, code updated!
    DD Admin

  3. The Following User Says Thank You to ddadmin For This Useful Post:

    jscheuer1 (11-03-2009)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •