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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T19:49:52+00:00 2026-05-29T19:49:52+00:00

When a user rolls over a certain <td> , an iframe nested in a

  • 0

When a user rolls over a certain <td>, an iframe nested in a <div> slides down inside that <div>. Right now I have three <div>‘s stacked on top of each other, and with jQuery I am showing and hiding the appropriate <div>.

It works fine if I let each <div> appear and then move my cursor to the next <td>, but if I move rapidly to each link, they load together and the jQuery does not properly hide the other <div>‘s.

Here is the project site:

Click on “MPC Clients” dropdown, then hover the three links:

Project Site

Here is the jQuery that I’m using:

$("td#version1").hover(function() {
    $("#iframe2,#iframe3").hide();
    $("#iframe1").slideDown("slow");
    $("#iframe2,#iframe3").hide();
});

$("td#version2").hover(function() {
    $("#iframe1,#iframe3").hide();
    $("#iframe2").slideDown("slow");
    $("#iframe1,#iframe3").hide();
});

$("td#version3").hover(function() {
    $("#iframe1,#iframe2").hide();
    $("#iframe3").slideDown("slow");    
    $("#iframe1,#iframe2").hide();
});

Here’s the html with the hidden <div>‘s:

<tr>
    <td id="previewWindow0" class="previewWindow" colspan="3"><h2>Preview Window</h2>
        <div id="iframe1"><iframe src="http://www.crm-newsletter.com/client-emails/liveWebinar.html"></iframe></div>
        <div id="iframe2"><iframe src="http://www.crm-newsletter.com/client-emails/MissedWebinar.html"></iframe></div>
        <div id="iframe3"><iframe src="http://www.crm-newsletter.com/client-emails/Mobile.html"></iframe></div>
    </td>
</tr>
  • 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-29T19:49:53+00:00Added an answer on May 29, 2026 at 7:49 pm

    When you move over the elements fast multiple events are fired and animations are not complete so you don’t see the expected behavior.

    Use stop() method to stop the previous animation before you start the next.

    Try this.

        $("td#version1").hover(function() {
            $("#iframe2,#iframe3").hide();
            $("#iframe1").stop(true, true).slideDown("slow");
            $("#iframe2,#iframe3").hide();
        });
        $("td#version2").hover(function() {
            $("#iframe1,#iframe3").hide();
            $("#iframe2").stop(true, true).slideDown("slow");
            $("#iframe1,#iframe3").hide();
        });
        $("td#version3").hover(function() {
            $("#iframe1,#iframe2").hide();
            $("#iframe3").stop(true, true).slideDown("slow");    
            $("#iframe1,#iframe2").hide();
        });
    

    stop(clearQueue, jumpToEnd) reference – http://api.jquery.com/stop/

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

Sidebar

Related Questions

I have an application that needs to hit the ActiveDirectory to get user permission/roles
On this page: http://thegoodgirlsnyc.com/index.html?page=about When the user rolls over the names of the team
How to get user roles from Membership provider? Suppose I have a username and
I am modifying my PHP network's code to have user roles like wordpress here
I'm just learning ruby on rails and I have a table of user roles
I've got a User table with a bitmask that contains the user's roles. The
What options do I have to read the roles of the current user from
I have multiple JQuery sortable lists that connect with each other... They allow you
I setup a jquery dropdown menu that works perfect. It drops down when a
I have a query that returns a bunch of rows. But using the same

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.