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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T02:46:23+00:00 2026-06-09T02:46:23+00:00

I am trying to create hover effect with callback function. It seems that the

  • 0

I am trying to create hover effect with callback function. It seems that the effect can only be trigged on the callback function but not the init hover. I was wondering if someone here can help me out. Thanks a lot.

$("img").live("hover", function () {
    // hover in
    $(this).css("z-index", 1);
    $(this).animate({
        height: "35%",
        width: "35%",
        left: "-=50",
        top: "-=50"
    }, "fast");
}, function () { //only the following codes will be triggered.
    // hover out
    $(this).css("z-index", 0);
    $(this).animate({
        height: "15%",
        width: "15%",
        left: "+=50",
        top: "+=50"
    }, "fast");
});

The img are generated via ajax call, not sure if it’s relevant

<div id='image_layout'>
    <img src='a.jpg' />
    <img src='b.jpg' />
    <img src='c.jpg' />
</div>  
  • 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-09T02:46:25+00:00Added an answer on June 9, 2026 at 2:46 am

    live() is deprecated, and it does’nt really work that way, but if you are using jQuery 1.7+ you should be using on() to delegate the event to the closest non dynamic parent, I’ll use document in the example, you’ll replace document with the closest parent to the image that is’nt inserted with Ajax, probably #image_layout if that element is not inserted dynamically :

    $(document).on({
        mouseenter: function() {
            $(this).css("z-index", 1).animate({
                    height: "35%",
                    width: "35%",
                    left: "-=50",
                    top: "-=50"
                }, "fast");
        },
        mouseleave: function() {
            $(this).css("z-index", 0).animate({
                    height: "15%",
                    width: "15%",
                    left: "+=50",
                    top: "+=50"
                }, "fast");
        }
    }, "img");
    

    On another note, using += and percentages in your animations will in many cases cause you nothing but grief.

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

Sidebar

Related Questions

I am trying to create a jQuery hover function that will highlight a different
I am trying to create following effect: when I hover over my link, that
I'm trying to create a rather unique effect. It's actually not that complicated, what
I'm trying to create a hover effect for an image with a link. The
I have been trying to create a border-color change hover effect with CSS and
I am trying to create an effect where if you hover over an img,
I am trying create the image enlargement effect when you hover your mouse over
I'm trying to create an effect where when you hover over a list item
I'm trying to create a mouse-over effect that slides the top layer to the
I'm trying to create two buttons that using the hover event, hide some divs

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.