Results 1 to 4 of 4

Thread: "undefined" is null or is an object in jquery.min.js (error only in IE 8)

  1. #1
    Join Date
    Oct 2010
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question "undefined" is null or is an object in jquery.min.js (error only in IE 8)

    1) Script Title:
    Ultimate Fade-in slideshow (v2.4)

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

    3) Describe problem:

    in Internet Explorer there's an annoying java script error (screen shot attached)

    "undefined" is null or is an object

    jquery.min.js, line 55, character 143


    I have installed the script here:

    http://www.ipfe.org.pe/

    if you don't see the problem, browse the site or reload the page and the error will pop-up sooner or later. This only happens in IE. Chrome, Opera and Firefox is OK.

    Thanks in advance!

  2. #2
    Join Date
    Oct 2010
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Problem solved. It seems the error was product of a conflict with other java script files of the CMS (Drupal) and the script. My mistake was to call the fadeslideshow.js in the header of every page by default. Following exactly the instructions provided in the script solve the problem.

  3. #3
    Join Date
    Oct 2009
    Posts
    10
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hi

    Seems i am getting the same problem, but i use fadeshow, lightbox, and a script for my buttons,
    i have this on all my pages, but they are in use on all so i need to find a different solution.
    <script type="text/javascript" src="viewer/js/prototype.js"></script>
    <script type="text/javascript" src="viewer/js/scriptaculous.js?load=effects,builder"></script>
    <script type="text/javascript" src="viewer/js/lightbox.js"></script>
    <script type="text/javascript" src="miniTab.js"></script>
    <script type="text/javascript" src="show/jquery.min.js"></script>
    <script type="text/javascript" src="show/fadeslideshow.js">

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

    Assuming the scripts are all well written and miniTab relies on no library or upon Prototype, this may work - Reverse the order:

    Code:
    <script type="text/javascript" src="show/jquery.min.js"></script>
    <script type="text/javascript" src="show/fadeslideshow.js"></script>
    <script type="text/javascript" src="viewer/js/prototype.js"></script>
    <script type="text/javascript" src="viewer/js/scriptaculous.js?load=effects,builder"></script>
    <script type="text/javascript" src="viewer/js/lightbox.js"></script>
    <script type="text/javascript" src="miniTab.js"></script>
    - John
    ________________________

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

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
  •