Accessing an object's property from an event listener call in Javascript - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T06:06:13Z http://stackoverflow.com/feeds/question/1081499 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081499/accessing-an-objects-property-from-an-event-listener-call-in-javascript 1 Accessing an object's property from an event listener call in Javascript Ronald 2009-07-04T04:35:13Z 2009-07-04T06:02:59Z <p>Below I am creating an object in Javascript. Within the constructor I am setting up an event listener. The problem is that when the event gets fired, this.prop cannot be found, and undefined prints out. How do I solve this? </p> <pre><code> var someObj = function someObj(){ this.prop = 33; this.mouseMoving = function() { console.log(this.prop);} document.getElementById("someDiv").addEventListener('mousemove', this.mouseMoving, true); } </code></pre> http://stackoverflow.com/questions/1081499/accessing-an-objects-property-from-an-event-listener-call-in-javascript/1081513#1081513 1 Answer by Matthew Crumley for Accessing an object's property from an event listener call in Javascript Matthew Crumley 2009-07-04T04:44:22Z 2009-07-04T04:53:53Z <p>When the event handler gets called, "this" no longer references the "someObj" object. You need to capture "this" into a local variable that the mouseMoving function will capture.</p> <pre><code>var someObj = function someObj(){ this.prop = 33; var self = this; this.mouseMoving = function() { console.log(self.prop);} document.getElementById("someDiv").addEventListener('mousemove', this.mouseMoving, true); } </code></pre> <p>I'm assuming "someObj is a constructor, i.e. intended to be called with as <code>new someObj()</code>, otherwise "this" will be the global scope.</p> <p>The "this" keyword can be confusing in JavaScript, because it doesn't work the same way as in other languages. The key thing to remember is that it is bound to the calling object <strong>when the function is called</strong>, not when the function is created.</p> http://stackoverflow.com/questions/1081499/accessing-an-objects-property-from-an-event-listener-call-in-javascript/1081515#1081515 0 Answer by Itay Moav for Accessing an object's property from an event listener call in Javascript Itay Moav 2009-07-04T04:44:39Z 2009-07-04T04:44:39Z <p>If you will use a library (like mootools or jquery) it will look like that: </p> <pre><code>var someObj = function someObj(){ this.prop = 33; this.mouseMoving = function() { console.log(this.prop);} document.getElementById("someDiv").addEventListener('mousemove', this.mouseMoving.bind(this),true); } </code></pre> <p>Other wise you have to pass a reference of the object someObj to the element and use that reference in the line:</p> <pre><code>console.log(this.referenceToObject.prop); //this references the DOM element in an event. </code></pre> http://stackoverflow.com/questions/1081499/accessing-an-objects-property-from-an-event-listener-call-in-javascript/1081542#1081542 0 Answer by CMS for Accessing an object's property from an event listener call in Javascript CMS 2009-07-04T05:03:10Z 2009-07-04T05:03:10Z <p>You have some typos on your function declaration.</p> <p>Your prop variable is also defined as a <em>"public"</em> or <em>"visible"</em> member (by using this.prop), doing so forces you to store the reference of <em>this</em> from the outer function (that is actually a reference to the object instance), as a <em>"private"</em> member of the function (using var) to get access the instance of the created object and read the <em>"public" prop</em> member.</p> <p>You have some alternatives to rewrite this code:</p> <pre><code>function someObj (){ var self = this; this.prop = 33; this.mouseMoving = function() { alert(self.prop);} // You access the current // instance, stored in *self* // since *this*, inside the // function, is in another // context. //... } var mySomeObj = new someObj(); // Object instantiation </code></pre> <p>Or you could:</p> <pre><code>function someObj (){ var prop = 33; this.mouseMoving = function() { alert(prop);} //... } var mySomeObj = new someObj(); // Object instantiation </code></pre> <p>The variables declared with <em>var</em>, are accesible to the functions declared inside of the major constructor function, this feature is known as <a href="http://www.jibbering.com/faq/faq%5Fnotes/closures.html" rel="nofollow">Closures</a>.</p> http://stackoverflow.com/questions/1081499/accessing-an-objects-property-from-an-event-listener-call-in-javascript/1081544#1081544 1 Answer by SolutionYogi for Accessing an object's property from an event listener call in Javascript SolutionYogi 2009-07-04T05:03:27Z 2009-07-04T05:03:27Z <p>First, you need to understand how 'this' works in JavaScript. 'this' keyword doesn't behave how it behaves in other languages like C# or JAVA. Read following post to understand more,</p> <p><a href="http://stackoverflow.com/questions/541167/what-is-the-rationale-for-the-behavior-of-the-this-keyword-in-javascript">http://stackoverflow.com/questions/541167/what-is-the-rationale-for-the-behavior-of-the-this-keyword-in-javascript</a></p> <p>Once you understand that, as Matthew outlined in his code, you can save reference to 'this' and use that reference inside the mouseMoving function.</p> <p>Though overall, I will advise that you use a JavaScript framework (e.g. jQuery, YUI, MooTools) which will take care of these issues for you. E.g. In Internet Explorer, you use addEvent to attach event and not addEventListenr. </p> http://stackoverflow.com/questions/1081499/accessing-an-objects-property-from-an-event-listener-call-in-javascript/1081622#1081622 0 Answer by Vijay Dev for Accessing an object's property from an event listener call in Javascript Vijay Dev 2009-07-04T06:02:59Z 2009-07-04T06:02:59Z <p>From Section 4.3 of <strong>JavaScript: The Good Parts</strong> by <strong>Douglas Crockford</strong>:</p> <blockquote> <p>Invoking a function suspends the execution of the current function, passing control and parameters to the new function. In addition to the declared parameters, every function receives two additional parameters: this and arguments. The this parameter is very important in object oriented programming, and its value is determined by the invocation pattern. There are four patterns of invocation in JavaScript: the method invocation pattern, the function invocation pattern, the constructor invocation pattern, and the apply invocation pattern. The patterns differ in how the bonus parameter this is initialized.</p> </blockquote> <p>Crockford continues to explains the binding of 'this' in each of these patterns, as follows:</p> <p><strong>The Method Invocation Pattern:</strong> When a function is stored as a property of an object, we call it a method. When a method is invoked, this is bound to that object.</p> <p><strong>The Function Invocation Pattern:</strong> When a function is invoked with this pattern, this is bound to the global object. This was a mistake in the design of the language.</p> <p><strong>The Constructor Invocation Pattern:</strong> If a function is invoked with the new prefix, then a new object will be created with a hidden link to the value of the function's prototype member, and this will be bound to that new object.</p> <p><strong>The Apply Invocation Pattern:</strong> The apply method lets us construct an array of arguments to use to invoke a function. It also lets us choose the value of this. The apply method takes two parameters. The first is the value that should be bound to this. The second is an array of parameters.</p>