Results 1 to 3 of 3

Thread: Animated Collapsible DIV on IE6&7

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

    Default Animated Collapsible DIV on IE6&7

    1) Script Title: Animated Collapsible DIV v2.4

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

    3) Describe problem:
    On both IE 6 and 7, the script does not seem to be functioning. I have a list of links using the script and the div that is suppose to appear upon clicking just shows up on initial load. Clicking the links just shifts the div slightly downward and it quickly moves back up. Also my styles from my CSS stop functioning after the first div on the list.
    Last edited by vich; 02-06-2010 at 09:41 AM.

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

    Default

    My guess is IE is tripping up on the structure of your accordion contents. That is, you're dividing LIs arbitrarily using DIV tags- I may be wrong, but that isn't allowed in HTML. Try changing your menu headers to DIV tags, and each group of accordion content as a UL list instead. So instead of say:

    Code:
          <li><a href="javascript:animatedcollapse.toggle('promo')">Promotional Material</a></li>
          <div id="promo" style="display:none">
            <li id="sub_menu"><a href="alive_asia">Alive Asia</a></li>
            <li id="sub_menu"><a href="willow">Lakeland Willow Water</a></li>
            <li id="sub_menu"><a href="transair">TransAir</a></li>
            <li id="sub_menu"><a href="ex_woodcraft">Exclusive Woodcraft</a></li>
    
            <li id="sub_menu"><a href="ibi_brochures">IBI Group Brochures</a></li>
            <li id="sub_menu"><a href="cityscape">IBI Group Cityscape</a></li>
          </div>

    Change that to:

    Code:
    <div><a href="javascript:animatedcollapse.toggle('promo')">Promotional Material</a></div>
    <ul id="promo" style="display:none">
            <li id="sub_menu"><a href="alive_asia">Alive Asia</a></li>
            <li id="sub_menu"><a href="willow">Lakeland Willow Water</a></li>
            <li id="sub_menu"><a href="transair">TransAir</a></li>
            <li id="sub_menu"><a href="ex_woodcraft">Exclusive Woodcraft</a></li>
    
            <li id="sub_menu"><a href="ibi_brochures">IBI Group Brochures</a></li>
            <li id="sub_menu"><a href="cityscape">IBI Group Cityscape</a></li>
    </ul>
    DD Admin

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

    Default

    Awesome! That did the trick. Thank you so much!

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
  •