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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:20:12+00:00 2026-05-25T12:20:12+00:00

How do I get the function to loop/continue as long as I’m on mouseenter?

  • 0

How do I get the function to loop/continue as long as I’m on mouseenter? If I add colorPixels() after the duration in the first script, it doesn’t stop on mouseleave.

                  <script type="text/javascript">
              function pixelColors(){
              var color = 'rgb('+Math.floor(Math.random()*255)+','+Math.floor(Math.random()*255)+','+Math.floor(Math.random()*255)+')';
              $('#logo_back').animate({
                           backgroundColor:color
                        }, 2000);

              }
              </script>


              <script>

              $(document).ready(function() {

              $("#logo").bind('mouseenter', function() {
              pixelColors() } );


              $("#logo").bind('mouseleave', function() {
              jQuery(this).stop(true, true);


              });

              });



              </script>
  • 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-25T12:20:13+00:00Added an answer on May 25, 2026 at 12:20 pm

    How about this:

    var mouseOver = false;
    function pixelColors() {
        if (mouseOver) {
        var color = 'rgb(' + Math.floor(Math.random() * 255) + ',' + Math.floor(Math.random() * 255) + ',' + Math.floor(Math.random() * 255) + ')';
        $('#logo_back').animate({
            backgroundColor: color
        }, 2000, pixelColors);
        }
    }
    
    $(document).ready(function() {
    
        $("#logo").bind('mouseenter', function() {
            mouseOver = true;
            pixelColors();
        });
    
    
        $("#logo").bind('mouseleave', function() {
            mouseOver = false;
        });
    
    });
    

    Example: http://jsfiddle.net/jfebC/

    Or, using .stop() like you are doing currently:

    function pixelColors() {
        var color = 'rgb(' + Math.floor(Math.random() * 255) + ',' + Math.floor(Math.random() * 255) + ',' + Math.floor(Math.random() * 255) + ')';
        $('#logo_back').animate({
            backgroundColor: color
        }, 2000, pixelColors);
    }
    
    $(document).ready(function() {
    
        $("#logo").bind('mouseenter', pixelColors);
    
        $("#logo").bind('mouseleave', function() {
            $("#logo_back").stop();
        });
    });
    

    Example: http://jsfiddle.net/TyybP/

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

Sidebar

Related Questions

I have a javascript/jQuery block as a callback after $.get function: function myCallBack(data, textStatus)
How to get function's name from function's pointer in C? Edit: The real case
this.String = { Get : function (val) { return function() { return val; }
I am trying to use the http_get function. But I get a undefined reference
I'm trying to use the jQuery get function to render the results of an
I want to consume a web service using jquery's get function. There is no
I want to get lambda function that will query for items which were submitted
How do I get this function to not only run on window resize but
The below function results in infinite loop if a string is entered as input.
In C, C++ and C# when using a condition inside a function or loop

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.