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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T03:43:36+00:00 2026-05-15T03:43:36+00:00

Is it possible to get the this that a function’s caller was called with

  • 0

Is it possible to get the this that a function’s caller was called with in JavaScript without passing this to the arguments in a way which supports IE as well as Firefox/Chrome et al?

For example:

var ob = {
    callme: function() {
        doSomething();
    }
}
ob.callme();

function doSomething() {
    alert(doSomething.caller.this === ob); // how can I find the `this` that 
                                           // `callme` was called with 
                                           // (`ob` in this case) without 
                                           // passing `this` to `doSomething`?
}

I’m starting to suspect it’s not, but I thought I may as well ask as it’d make my code much shorter and easier to read.

  • 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-15T03:43:37+00:00Added an answer on May 15, 2026 at 3:43 am

    Well, the closest I can think, without technically passing the value as an argument, would be to set the this value of the doSomething function.

    Since the doSomething function is not bound to any object, by default, if you call it like doSomething(); the this value inside it will refer to the Global object, and that’s normally not too useful…

    For example:

    var ob = {
      callme: function () {
        doSomething.call(this); // bind the `this` value of `doSomething`
      }
    };
    
    function doSomething () {
      alert(this === ob); // use the bound `this` value
    }
    
    ob.callme();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Over in this question, Scott writes that it is possible to get the current
Is it possible to get the 'nth' return value from a function without having
Supposedly, it is possible to get this from Google Maps or some such service.
I need a quick yes/no answer on this... Is it possible to get a
Is it possible to get notified (without polling, but via an event) when a
how is that possible that call to the alert function changes behavior of a
Is it possible get the assembly information from an imported MEF function? I need
Possible Duplicate: How do I get this CSS text-decoration issue to work? I'm using
Is it possible to get gdb or use some other tools to create a
Is is possible to get login credentials such as name/id if user does login

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.