Results 1 to 3 of 3

Thread: thumbnail viewer II not working in firefox

  1. #1
    Join Date
    Jan 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default thumbnail viewer II not working in firefox

    1) Script Title: Thumbnail Viewer II

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

    3) Describe problem: The images in the table do not activate the loadarea image to the left in Firefox. See here: http://www.vitalizesugarhouse.com. Works fine in all other browsers, and it worked fine in Firefox when the site was hosted on my computer with MAMP. Published the site and it no longer works. Thanks in advance.

  2. #2
    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

    It's a conflict with the overlib_mini.js script. It defines createPopup. So this statement from thumbnailviewer2.js which in Firefox usually would evaluate to false:

    Code:
    iefiltercapable: document.compatMode && window.createPopup? true : false, //Detect browser support for IE filters
    evaluates to true. You may fix that by editing the thumbnailviewer2.js file in a plain text only editor like NotePad, replacing that single line with these:

    Code:
     //Detect browser support for IE filters:
    iefiltercapable: false,
    /*@cc_on @*/
    /*@if(@_jscript_version >= 5)
    iefiltercapable: document.compatMode && window.createPopup? true : false,
    @end @*/
    - John
    ________________________

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

  3. #3
    Join Date
    Jan 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Success - Thanks!

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
  •