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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T15:40:14+00:00 2026-06-01T15:40:14+00:00

I wrote a JavaScript class called MyClass in which I’ve defined a method closeThis

  • 0

I wrote a JavaScript class called MyClass in which I’ve defined a method closeThis

MyClass = function() {
  this.closeThis = function() {
    document.getElementById("hidePane").style.display = 'none';
  }
}

Now, in my html, i’m trying to call that as follows…

<script type="text/javascript">
  function callThis() {
    var myclassObj = new MyClass();
    document.getElementById("closeButton").onclick = myclassObj.closeThis();
  }
</script>

The above callThis will be called when I clicked on a button. The problem here is, onclick event on top of clsoeButtion is getting called automatically when page loads. What could be wrong in this?

  • 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-01T15:40:15+00:00Added an answer on June 1, 2026 at 3:40 pm

    You’re calling the function right away.

    When you leave the parentheses on the function reference, what you’re basically saying is:

    Evaluate the closeThis function and assign the result to onclick

    when what you really want to do is assign the function reference to the click handler:

    document.getElementById("closeButton").onclick = myclassObj.closeThis;
    

    Leave out the parentheses instead, and you’ll bind the closeThis function to the onclick. What this instead says is:

    Assign the function closeThis to the click handler.

    You are essentially assigning the function to the variable as a first-class object, or a reference to a function.

    As an aside, my personal preference is to always use an anonymous function wrapper. Sometimes you need to be able to pass parameters into your function, and this makes sure that you can more easily do so:

    document.getElementById("closeButton").onclick = 
        function() {
            myclassObj.closeThis();
        };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wrote a class in javascript that looks like this: function main() { this.var1
I wrote the following class in javascript function main() { this.area ; this.$= function(target)
I wrote a simple javascript image rotator which picks a random image on each
I wrote a simple javascript function to display a progressbar with the help of
I have this javascript modal which I want to use for error reporting. Everything
I have a script called notify_me.php which I run like so: script type=text/javascript> //Run
I'm writing a JavaSCript class that has a method that recursively calls itself. Scheduler.prototype.updateTimer
my problem is the following. I wrote a class AJAXEngine, which creates in the
I want to convert function object to function. I wrote this code, but it
I am trying to hide the result of a C# method which is called

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.