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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:12:39+00:00 2026-05-14T20:12:39+00:00

This is a fairly easy one, but I cant seem to figure it out.

  • 0

This is a fairly easy one, but I cant seem to figure it out.

Basically I have a jquery hover that fades in a div and fades out the other upon hover.

When I quickly hover on and off a few times it pulses back and forth for about 3-4 seconds to finish all those fade in/fade outs.

I generally stop these things with .stop(), but it doesnt seem to do the trick here. How can I kill the fade in if I hover off the button before the an`$(“.txtWrap”).stop().hover(

$(".txtWrap").stop().hover(
  function () {
    $(this).find('.txtBock').fadeOut();
    $(this).find('.txtDesc').fadeIn();

  },
  function () {
    $(this).find('.txtBock').fadeIn();
    $(this).find('.txtDesc').fadeOut();
  }
)
  • 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-14T20:12:40+00:00Added an answer on May 14, 2026 at 8:12 pm

    Your stop() is misplaced.

    Try this:

    $(".txtWrap").hover(
      function () {
        $(this).find('.txtBock').stop().fadeOut();
        $(this).find('.txtDesc').fadeIn();
      //  $('#timeTxt').fadeOut();
      //  $('#timeTxtDesc').fadeIn();
    
      },
      function () {
        $(this).find('.txtBock').fadeIn();
        $(this).find('.txtDesc').stop().fadeOut();
      }
    )
    

    EDIT:

    This will animate the elements’ opacity without hiding the element. If you want them hidden, use .hide() you’ll need to add a callback to the animate function.

    $(".txtWrap").hover(
      function () {
        $(this).find('.txtBock').stop().animate({opacity:0}, 500);
        $(this).find('.txtDesc').animate({opacity:1}, 500);
      //  $('#timeTxt').fadeOut();
      //  $('#timeTxtDesc').fadeIn();
    
      },
      function () {
        $(this).find('.txtBock').animate({opacity:1}, 500);
        $(this).find('.txtDesc').stop().animate({opacity:0}, 500);
      }
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this should be fairly easy but I can't quite figure it out
I thought this would be fairly easy, but I'm totally baffled. I want one
This is fairly simple but I cant work it out. I'm building a wordpress
new one for me -- I'm assuming this is fairly easy, but I've never
I'm a beginner at SQL and have this fairly easy conditional problem: Every installation
I am fairly new to OSX development, so this may be easy but google
I have a form where fields get added via JavaScript. This is fairly easy
I've got a, I think fairly easy question, but this is bugging me for
I believe task I am trying to accomplish is fairly easy, but I have
This is probably an easy one, but I need to use perl to both

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.