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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T17:04:51+00:00 2026-05-19T17:04:51+00:00

This function is supposed to change the background color of the object being clicked

  • 0

This function is supposed to change the background color of the object being clicked

function colorMe(){
   $(this).css('background-color', 'red');
}

I call it like this

$('.colorme').click(colorMe);

and it changes the background of this div

<div class="colorme">Color Me</div>

The problem is that I want to do something else before running colorMe. So I can’t use just $('.colorme').click(colorMe);. What I’m trying to do is something like this

$('.colorme').click(function(){
  alert('something happens first, then colorMe is called');
  colorMe();         //I call colorMe here..
  $(this).colorMe(); //I also tried this, but it's not working
});

but it’s not affecting the div. I think it lost track of the div to affect. Do I need to pass it and how?

  • 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-19T17:04:51+00:00Added an answer on May 19, 2026 at 5:04 pm
    function colorMe(elt){
       $(elt).css('background-color', 'red');
    }
    
    $('.colorme').click(function(){
      alert('something happens first, then colorMe is called');
      colorMe(this);         //I call colorMe here..
    });
    

    To call a function on a jQuery object like you did here

    $(this).colorMe()
    

    you would have to build a plugin (I edited it to add a class)

    // css
    .red {
        background: red;
    }
    
    // js
    (function($) {
        $.fn.extend({
            colorMe: function() {
                this.addClass("red");
            },
            unColorMe: function() {
                this.removeClass("red");
            }
        });
    })(jQuery);
    

    Then you would be able to do

    $(".a_class").colorMe();
    $(".a_class").unColorMe();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

jQuery(document).ready(function() { jQuery(#bfCaptchaEntry).on(click, function(){ jQuery(#bfCaptchaEntry).css(background-color, #FFFFFF); }); jQuery(#bfCaptchaEntry).on(blur, function(){ jQuery(#bfCaptchaEntry).css(background-color, #CC0000); }); }); This
I have a color palette: css .colors {width:75px;height:75px;background-color:red;border:1px solid #000;} .highlight {width:75px;height:75px;background-color:red;border:2px solid #000;}
I have this function which is supposed to set a certain time format to
I've had trouble writing this code. I'm supposed to make a function that can
Suppose I have a utility function like this - public static boolean isABlankSpace(char c)
Suppose I have a function like this (I use akka 2.0.2): def foo(message: String):
Particularly the bit about live.... jQuery('.something').live('click', function() { jQuery(this).parent('form').reset(); }); I suppose this might
Suppose I have a function defined like this: class Foo() { public: void bar(MyClass*
Suppose I have a function which looks like this: template <class In, class In2>
Suppose I have a free function called InitFoo . I'd like to protect this

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.