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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T13:38:16+00:00 2026-06-08T13:38:16+00:00

I bind the mouseenter and mouseleave event in $document.ready() like this: $( .collection_add_to ).hover(

  • 0

I bind the mouseenter and mouseleave event in $document.ready() like this:

$( ".collection_add_to" ).hover(
    function() { $(this).find( ".playlists" ).fadeIn("fast"); },
    function() { $(this).find( ".playlists" ).fadeOut("fast"); }
);

The user can request more search results which have the class “.collection_add_to”. They are appended to the existing search results like this:

$.get("context/collection/", $data, function(result) {
    $( result ).appendTo( "#collection_song_items" );
    // rebind_hover();
});

I doubled checked that the returned results have the class “.collection_add_to”. I also tried to rebind this in extra routine:

function rebind_hover() {
    $( ".collection_add_to" ).hover(
        function() { $(this).find( ".playlists" ).fadeIn("fast"); },
        function() { $(this).find( ".playlists" ).fadeOut("fast"); }
    );
}

Nothing worked, the hover event is not working anymore on the newly added items. When using the $load() function, it works. How can I make the hover-event working again on dynamically loaded content, especially when content is added with append() or appendTo()?

edit

Thanks to sacho on irc and Raminson:

$(document).on("mouseenter", ".collection_add_to", function() {
           console.log("MOUSEENTER");
});
$(document).on("mouseleave", ".collection_add_to", function() {
           console.log("MOUSELEAVE");
});

It was not clear to me that event delegation should be done from a node which should be higher in the DOM than the target element.

  • 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-08T13:38:18+00:00Added an answer on June 8, 2026 at 1:38 pm

    You should delegate the event, you can use on() method, try the following:

    $(document).on('mouseenter', ".collection_add_to", function() { 
         $(this).find( ".playlists" ).fadeIn("fast"); 
    }).on('mouseleave', ".collection_add_to", function() { 
         $(this).find( ".playlists" ).fadeOut("fast"); 
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is my jquery code jQuery(document).ready (function() { // post $('.post').bind('mouseenter mouseleave', function() {
I have several event handlers that I bind like this: $('#MyDiv').click(function () {...}); $('#SomeDiv').mouseenter(function
with the following three lines: $( .thumb ).bind( mousedown, function() { $('.thumb').not(this).unbind('mouseenter mouseleave'); });
I bind two event handlers on this link: <a href='#' id='elm'>Show Alert</a> JavaScript: $(function()
.bind('click',function(){ window.open($(this).find('.pc_more').html()); }); }); is there something in this part of the code that
$( #list li:eq(0) ).bind('mouseenter focus', function(event) { jQuery(#logo img).css('top', '-132px'); console.log( event.type, :: ,
Is there a jQuery shortcut for this? $(element).on(mouseover, function() { $(this).addClass(hover); }).on(mouseout, function() {
I want to have a function executed once on mouseenter then on mouseleave I
i am making a something like this : When a user mouseenter DIV1 ,
$('#cart > .heading a').bind('mouseenter', function() { $('#cart').addClass('active'); $.ajax({ url: 'index.php?route=checkout/cart/update', dataType: 'json', success: function(json)

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.