up vote 0 down vote favorite
share [g+] share [fb]

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.

var Session = Class.create({
initialize: function(){
	// define defaults
	this.source = '';
},
shout: function(){
	alert(this.source);
}});

I know it's something to do with scope and I'm sure it's a fairly basic issue - all help appreciated!

Thanks, Adam

link|improve this question

57% accept rate
Thanks guys - my (non)working copy was a bit more full than the one above, which I hadn't realised works. I'll go back and start from here! Thanks for all your replies – adam Apr 2 '09 at 9:04
feedback

3 Answers

up vote 1 down vote accepted

I tested Your code. It works as far as I can tell. Maybe setting the variable to the empty string is throwing you off?

link|improve this answer
feedback

looks right... and it works for me.

document.observe('dom:loaded', function() {
    var s = new Session();
    s.shout();
});
link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.