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 7595819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T21:45:57+00:00 2026-05-30T21:45:57+00:00

I’m tring to build a thumbnail hover effect. It works in every browser, but

  • 0

I’m tring to build a thumbnail hover effect. It works in every browser, but the IE… Where did I go wrong?!?

JQuery:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="jquery-ui.min.js"></script>
<script type="text/javascript" src="thumbhover.js"></script>
<script>

$('.sliders li:gt(3)').css('display', 'none');

$(".more").click(function() {
    $('.sliders li:first').insertAfter('.sliders li:last').toggle('clip', 100, function() {
        $('.sliders li:eq(3)').toggle('scale', 100);
    });

});

$(document).ready(function() {
    $('#thumb img').hoverpulse({
        size: 50,  // number of pixels to pulse element (in each direction)
        speed: 400 // speed of the animation 
    });
});
</script>​

HTML:

<div class="clients">
    <ul class="sliders" style="font-size: 11px; list-style: none;">
      <li class="slider">
        <div class="left" style="width: 87px;" id="thumb"><img src=
        "images/whit-images/12.jpg" width="80" height="60" alt="fishing cancun" /></div>

        <div class="left" style="height: 60px; width: 200px; margin-left: 87px;">
          <strong><br />
          15 min. fight 15 lbs Jack Crevalle</strong><br />
          February 22 2012
        </div><br clear="all" />
      </li>

      <li class="slider">
        <div class="left" style="width: 87px;" id="thumb"><img src=
        "images/whit-images/11.jpg" width="80" height="60" alt="fishing cancun" /></div>

        <div class="left" style="height: 60px; width: 190px; margin-left: 87px;">
          <strong>Ben Kirkpatrick with a Baby Tarpon</strong><br />
          February 21 2012
        </div><br clear="all" />
      </li>

      <li class="slider">
        <div class="left" style="width: 87px;" id="thumb"><img src=
        "images/whit-images/10.jpg" width="80" height="60" alt="fishing cancun" /></div>

        <div style="height: 60px; width: 200px; margin-left: 87px;">
          <strong>Ben with a nice size lookdown</strong><br />
          February 21 2012
        </div><br clear="all" />
      </li>

      <li class="slider">
        <div class="left" style="width: 87px;" id="thumb"><img src=
        "images/whit-images/9.jpg" width="80" height="60" alt="fishing cancun" /></div>

        <div class="left" style="height: 60px; width: 200px; margin-left: 87px;">
          <strong>Cancun</strong><br />
          February 2012
        </div><br clear="all" />
      </li>

      <li class="slider">
        <div class="left" style="width: 87px;" id="thumb"><img src=
        "images/whit-images/8.jpg" width="80" height="60" alt="fishing cancun" /></div>

        <div class="left" style="height: 60px; width: 200px; margin-left: 87px;">
          <strong><br />
          Chris Webber</strong><br />
          February 2012
        </div><br clear="all" />
      </li>

      <li class="slider">
        <div class="left" style="width: 87px;" id="thumb"><img src=
        "images/whit-images/7.jpg" width="80" height="60" alt="fishing cancun" /></div>

        <div class="left" style="height: 60px; width: 200px; margin-left: 87px;">
          <strong><br />
          Dwayne Perillo, first bonefish of 2012</strong><br />
          February 18 2012
        </div><br clear="all" />
      </li>

      <li class="slider">
        <div class="left" style="width: 87px;" id="thumb"><img src=
        "images/whit-images/6.jpg" width="80" height="60" alt="fishing cancun" /></div>

        <div class="left" style="height: 60px; width: 200px; margin-left: 87px;">
          <strong><br />
          Sweet catch</strong><br />
        </div>
      </li>
    </ul>
  </div>

CSS:

.slider{
    position: relative;
    height: 65px;
    margin-bottom: 4px;
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
}   

.clients{
    width: 330px;
    margin: 0 auto;
    position: relative;
    height: 320px;
}

Here is the actual website, please no comments about how messy the code is. I am not supposed to touch it! (on the bottom half where the clients part is).

  • 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-30T21:45:58+00:00Added an answer on May 30, 2026 at 9:45 pm

    Just took a look in IE9 and it is being forced to render in Quirks mode. Really before trying to work out why IE doesn’t work correctly, if possible, spend the time fixing the rendering engine (getting it to run in Standards mode). There’s a good chance it’ll fix itself.

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

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the
Seemingly simple, but I cannot find anything relevant on the web. What is the
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
I need to clean up various Word 'smart' characters in user input, including but
I want to construct a data frame in an Rcpp function, but when I

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.