| javascript Programming Glossary: this.dosomethingPreserving a reference to “this” in JavaScript prototype functions http://stackoverflow.com/questions/2025789/preserving-a-reference-to-this-in-javascript-prototype-functions  '.elements' this.myValue 'something' this.elements.each this.doSomething MyClass.prototype.doSomething function operate on the element.. 
 Scope of “this” in JavaScript http://stackoverflow.com/questions/2253955/scope-of-this-in-javascript  class that looks like this function SomeFunction this.doSomething function  this.doSomethingElse  this.doSomethingElse function.. like this function SomeFunction this.doSomething function  this.doSomethingElse  this.doSomethingElse function  This code throws an error.. this.doSomething function  this.doSomethingElse  this.doSomethingElse function  This code throws an error because the scope of.. 
 var self = this? http://stackoverflow.com/questions/337878/var-self-this  callback . So my code looks like this function MyObject this.doSomething function ... var self this '#foobar' .bind 'click' function.. self this '#foobar' .bind 'click' function self.doSomethng this.doSomething would not work here It works but is that the best way to do.. 
 JSLint error: Move all 'var' declarations to the top of the function http://stackoverflow.com/questions/4646455/jslint-error-move-all-var-declarations-to-the-top-of-the-function  JSLint UPDATE Example function doSomethingWithNodes nodes this.doSomething for var i 0 i nodes.length i this.doSomethingElse nodes i doSomething.. nodes this.doSomething for var i 0 i nodes.length i this.doSomethingElse nodes i doSomething want to find this problem jslint.com.. 
 Set listener for store events in a controller http://stackoverflow.com/questions/7193392/set-listener-for-store-events-in-a-controller  ... init function this.control 'myStore'  beforesync this.doSomething write this.doSomethingElse  ... My expected result is that the.. this.control 'myStore'  beforesync this.doSomething write this.doSomethingElse  ... My expected result is that the functions will be executed.. 
 |