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

  • Home
  • SEARCH
  • 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 8513711
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T04:39:19+00:00 2026-06-11T04:39:19+00:00

I need a bit of help again… I have this code: <div id=lyrics> <div

  • 0

I need a bit of help again… I have this code:

<div id="lyrics">
    <div id="lyricsClose"></div>
    <div id="ajax-content"></div>
</div>

id lyrics and lyricsClose are hidden. I basically want an overlayed div that shows lyrics, with a close button on the top, right. So, with jQuery:

$(document).ready(function() {
$('[id^=showContent]').click(function(e) {
    e.preventDefault(); // Prevent link acting as link
    $("body").append("<div id='lyricsOverlay'></div>");
    $("#lyricsOverlay").height($(document).height());
    $('#lyrics').css("display", "table"); 
        $('#lyrics').hover(function() {
            $('#lyricsClose').toggle();
        });         
        $('#lyrics').mouseleave(function() {
            $('#lyricsClose').css("display", "none");
        });
    $('#lyrics').show(); // Show content layer
    $('#lyricsOverlay').click(function() { 
            $('#lyrics').hide();
            $('#lyricsOverlay').remove();
        });     
    $('#lyricsClose').click(function() { 
            $('#lyrics').hide();
            $('#lyricsOverlay').remove();
        });
    });
})

When clicking:

Works fine, BUT, only sometimes. First time clicking works perfectly, second time lyricsClose div dissapears and does not show. Third time OK again, fourth KO, …

I suppose something is wrong in my jQuery code… Can’t se what it is…

Thanks!

  • 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-06-11T04:39:21+00:00Added an answer on June 11, 2026 at 4:39 am

    You are constantly re-binding the hover and mouseleave events.
    As the hover event calls toggle it calls it for every binding, couter-acting the previous execution.

    • Second time it shows, hides
    • Third time it shows, hides, shows
    • Fourth time it shows, hides, shows, hides

    Unbinding the events before re-binding should fix it.

    $('#lyrics').unbind("hover").hover(function() {
        $('#lyricsClose').toggle();
    });
    
    $('#lyrics').unbind("mouseleave").mouseleave(function() {
        $('#lyricsClose').css("display", "none");
    });
    

    Also, as you already set the display value of #lyrics .show() is redundant.

    /// not needed because as soon as you set above display to table it becomes visible
    $('#lyrics').show(); // Show content layer
    

    DEMO – Unbind before re-binding

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

Sidebar

Related Questions

I need some help understanding this bit of code pre { white-space: pre; white-space:
Help, I am a noob, just need some advice on this bit of code.
I need a bit of help with some Ruby array jujitsu. I have the
I am a bit confused and need your help. I have a database that
Need a bit help. Still a beginner at jQuery... I have a product package
I need a bit of help from any of the coders out there..... Currently,
I need a bit of help; I'm helping a friend port a Delphi app
I don't know MySQL very well so I need a bit of help with
I need a wee bit of help with css formatting on my website. Please
I'm a SQL noob, and I need a little bit of help understanding the

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.