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

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 wrote this function that's supposed to do StringPadRight("Hello", 10, "0") -> "Hello00000" .
Suppose I attach an blur function to an HTML input box like this: <input
I've been using this function but I'd like to know what's the most efficient
My script is supposed to dynamically change the background-position when clicking on a button
This function appears to be a way to access all sorts of system values.
Is this function declaration in C#: void foo(string mystring) the same as this one
Imagine this function: void SoundManager::playSource(ALuint sourceID, float offset) { alSourceStop(sourceID); ALint iTotal = 0;
I have this function in my Javascript Code that updates html fields with their
Note that this function does not have a { and } body. Just a

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.