Javascript class variable scope using prototype - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T11:58:06Z http://stackoverflow.com/feeds/question/706492 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/706492/javascript-class-variable-scope-using-prototype 0 Javascript class variable scope using prototype adam 2009-04-01T17:04:31Z 2009-05-06T17:51:12Z <p>Hi</p> <p>I'm writing a basic class using prototype.js in which some class vars are set when the class is initialised - the problem is that these variables aren't available to other methods within the class.</p> <pre><code>var Session = Class.create({ initialize: function(){ // define defaults this.source = ''; }, shout: function(){ alert(this.source); }}); </code></pre> <p>I know it's something to do with scope and I'm sure it's a fairly basic issue - all help appreciated!</p> <p>Thanks, Adam</p> http://stackoverflow.com/questions/706492/javascript-class-variable-scope-using-prototype/706524#706524 1 Answer by toby for Javascript class variable scope using prototype toby 2009-04-01T17:13:11Z 2009-04-01T17:13:11Z <p>I tested Your code. It works as far as I can tell. Maybe setting the variable to the empty string is throwing you off?</p> http://stackoverflow.com/questions/706492/javascript-class-variable-scope-using-prototype/706526#706526 1 Answer by ob for Javascript class variable scope using prototype ob 2009-04-01T17:13:52Z 2009-04-01T17:13:52Z <p>looks right... and it works for me.</p> <pre><code>document.observe('dom:loaded', function() { var s = new Session(); s.shout(); }); </code></pre> http://stackoverflow.com/questions/706492/javascript-class-variable-scope-using-prototype/706556#706556 1 Answer by MarkusQ for Javascript class variable scope using prototype MarkusQ 2009-04-01T17:21:15Z 2009-04-01T17:21:15Z <p>What error are you getting? I've tried a number of permutations and can't reproduce anything that looks like the problem you are reporting.</p>