Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 700683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:31:32+00:00 2026-05-14T03:31:32+00:00

I’m getting crazy with this IE 7… ==> hhttp://neu.emergent-innovation.com/ Why does following function not

  • 0

I’m getting crazy with this IE 7…

==> hhttp://neu.emergent-innovation.com/

Why does following function not work in IE 7, but perfectly with Firefox? Is there a bug in the animate-function?

function accordion_starting_page(){
    // hide all elements except the first one
    $('#FCE-Inhalt02-ContentWrapper .FCE-Fade:not(:first)').css("height", "0").hide();
    $('#FCE-Inhalt02-ContentWrapper .FCE-Fade:first').addClass("isVisible");

    $('div.FCE-Title').click(function(){

        // if user clicks on an already opened element => do nothing
        if (parseFloat($(this).next('.FCE-Fade').css("height")) > 0) {
            return false;
        }

        var toHide = $(this).siblings('.FCE-Fade.isVisible');

        toHide.removeClass("isVisible");

        // close all opened siblings
        toHide.animate({"height": "0", "display": "none"}, 1000);

        $(this).next('.FCE-Fade').addClass("isVisible").animate({"height" : "200"}, 1000);

        return false;
    });
}

Thank you very much for your help…


Thank you very much, those were great hints! Unfortunately, it still doesn’t work…

The problem is that IE shows the content of both containers until the animation is over… Firefox behaves correctly… I thought it’s the thing with “overflow: hidden” – but that didn’t change anything.

I already tried the accordion-plugin, but it behaves exactly the same…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T03:31:33+00:00Added an answer on May 14, 2026 at 3:31 am

    As stated by Paul, when using the method. Animate () jQuery IE7 browser does not recognize internally the property ‘position’. eg

    CSS rule:

    li p (bottom:-178px; color: white; background-color: # 4d4d4d; height: 100%; padding: 30px 10px 0 10px;)
    

    Implementation of animation in jQuery:

    $('li').hover(function(){
    
                  $this = $(this);
    
                  var bottom = '-45px'; //valor default para subir.
    
                  if( $this.css('height') == '320px' ){bottom = '-115px';}
    
                  $this.css('cursor', 'pointer').find('p').stop().find('.first').hide().end().animate({bottom: bottom}, {queue:false, duration:300});
    
          }, function(){
    
             var $this = $(this);
    
             var bottom = '-178px'; //valor default para descer
    
                if( $this.css('height') == '320px' ){bottom = '-432px';}
    
             $this.find('p').stop().animate({***position: 'absolute'***, bottom:bottom}, {queue:false, duration:300}).find('.first').show();
    
          });//fim do hover()
    

    What to work in all browsers:

    CSS rule:

    li p (position: absolute; left: 0; bottom:-178px; color: white; background-color: # 4d4d4d; height: 100%; padding: 30px 10px 0 10px;)
    

    JQuery code:

       $('li').hover(function(){
    
                     $this = $(this);
    
             var bottom = '-45px'; //valor default para subir.
    
                  if( $this.css('height') == '320px' ){bottom = '-115px';}
    
                  $this.css('cursor', 'pointer').find('p').stop().find('.first').hide().end().animate({bottom: bottom}, {queue:false, duration:300});
    
          }, function(){
    
             var $this = $(this);
    
             var bottom = '-178px'; //valor default para descer
    
                if( $this.css('height') == '320px' ){bottom = '-432px';}
    
             $this.find('p').stop().animate({bottom:bottom}, {queue:false, duration:300}).find('.first').show();
    
          });//fim do hover()
    

    In my case it was resolved this way.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.