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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T21:59:48+00:00 2026-06-02T21:59:48+00:00

I need to pass this function as a callback to DOM event var fooo

  • 0

I need to pass this function as a callback to DOM event

var fooo = function() {
  $(this).append("foo");
  fooo = function() {
     $(this).append("bar");
  };
};

$("#hover").hover(fooo);​

This example should append “foo” and then “bar”s, however it doesn’t work. What am I doing wrong?

JSFiddle

  • 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-02T21:59:50+00:00Added an answer on June 2, 2026 at 9:59 pm

    You are changing the function assigned to fooo, not the function that is assigned as the callback for the .hover.

    For clarity, when you pass a function as a handler for an event — like in the case of $().hover(fooo) — you are not passing the variable of fooo but the funciton that it points to. If you reassign fooo to something else the original function is still the one bound as the event handler.

    If I wanted to do what you are trying to do, then I would use a slightly different paradigm. Something like

    var fooo = (function() {
        var altBehavior = false;
        return function() {
            $(this).append(altBehavior ? "bar" : "foo");
            altBehavior = true;
        }
    })();
    
    $("#hover").hover(fooo);​
    

    The actual bound function never changes, but the context it exists in does.

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

Sidebar

Related Questions

I need to pass extra variables to a jQuery, ajax callback function. For example,
Hi What paratemeter I need to pass to this function. It is taking 00c0c0c0
This question is regarding getopt function in php. I need to pass two parameter
I think this should be simple. Say I've got the following jQuery: $someForm.live('submit', function(event)
I need to pass arguments onto a callback function as real arguments. How do
I need to pass this filepath over via route to my actionmethod: <p><a href=/Cars/@Model.CarId/@car.ContainerPath/@Model.UserId/Url>@car.Name</a></p>
I need to be able to pass HTML data into Outlook like this: MailMessage
Lets take qsort()'s comparison callback function as an example int (*compar)(const void *, const
How can I pass the values of a jQuery callback function to a PHP
I need to call a method from within a function, so I must pass

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.