Javascript class variable scope using prototype - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T11:58:06Zhttp://stackoverflow.com/feeds/question/706492http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/706492/javascript-class-variable-scope-using-prototype0Javascript class variable scope using prototypeadam2009-04-01T17:04:31Z2009-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#7065241Answer by toby for Javascript class variable scope using prototypetoby2009-04-01T17:13:11Z2009-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#7065261Answer by ob for Javascript class variable scope using prototypeob2009-04-01T17:13:52Z2009-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#7065561Answer by MarkusQ for Javascript class variable scope using prototypeMarkusQ2009-04-01T17:21:15Z2009-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>