Results 1 to 4 of 4

Thread: Step Carousel v1.8 Pagination Problems

  1. #1
    Join Date
    Jan 2010
    Location
    Burlington, VT area
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Step Carousel v1.8 Pagination Problems

    1) Script Title: Step Carousel v1.8
    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...epcarousel.htm

    Hi all -

    We are seeing an odd pagination issue when our website is loaded onto our hosting server. The issue only appears to happen on IE7, but I am not so sure if that's really true or not. It does not appear when launched locally either ... very odd.

    Basically, its constantly loading the pagination opencircle, closedcircle and grayed circle images. FWIW, your page does not do this, but ours does. We are not using AJAX - simply inline mode to animate some screenshots of our apps.

    You can check out the link to our failing demo website online here:

    Page with Pagination Issue

    You can check out the link to our successful demo website online here:

    Page withOUT Pagination Issue

    This has all the makings of a timing issue ... and we do use onload and onunload events (legacy javascript for now).

    Any help would be tremendous.

    - Tom @ eM
    Last edited by empowermobility; 01-05-2010 at 04:42 AM.

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

    Default

    Hmm does the problem occur in IE8 as well, or just IE7? If the later, I'll have to fire up an older computer to test it out.
    DD Admin

  3. #3
    Join Date
    Jan 2010
    Location
    Burlington, VT area
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks for the reply.

    Whoops ... typo, that should read IE8. Let me know if I ought to provide more information.

    - Tom @ eM

  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

    This is probably due to one or more non-standard and/or questionable practices used in the HTML and/or javascript code on the page. I can't find the specific one or ones though, if I do I will get back to you.

    However, your assessment is essentially correct. IE is trying to load the:

    Code:
    <img src="./images/web_opencircle.png" dat . . .
    image and not being very successful at it. If you preload the image, it should be fine, in fact solved the problem here:

    Code:
     . . . me="verify-v1" content="lfGK9ohBpv4bFU/+gz585u8zaqGhuH9mrS+WFfJ0xls=" /> 
        <meta http-equiv="content-Type" content="text/head; charset=ISO-8859-1">
        <meta http-equiv="imagetoolbar" content="no">
    <script type="text/javascript">
    (function(){
    	var im = new Image();
    	im.src = './images/web_opencircle.png';
    })();
    </script>
        <script type="text/javascript" src="./js/jquery.min.js"></script>
    
    	<script type="text/javascript" src="./js/stepcarousel.js">
        <!--
    		/***********************************************
    		* Step Carousel View . . .
    Added Later:

    I believe this is the old IE bug of "I can't load an image if I'm busy loading it". A Bug I first heard of here:

    http://www.quirksmode.org/blog/archi...notes_r_1.html

    . . . Every once in a while, especially on slow connections, Explorer Windows refuses to show the images . . . , because (I guess) it's still busy loading them from the server — or something.
    Last edited by jscheuer1; 01-05-2010 at 03:59 PM. Reason: add info
    - 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
  •