User Ronald - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T20:20:08Z http://stackoverflow.com/feeds/user/133038 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>