function myclass(objref) {
var that = this;
this.message="Я обект, тарм-пам пам"
this.obj=objref
this.helloworld = function() {
alert(that.message) //Должен при клике на кнопку сказать 'Я обект, тарм-пам пам', а сообщает undefined
}
this.obj.onclick=this.helloworld;
//this.obj.onclick=this.helloworld.call(this);
//this.obj.onclick=function() {this.helloworld()};
//this.obj.onclick=myclass.prototype.helloworld.call(this); //- это все тоже не работает
}
И весь раздел до кучи
http://javascript.ru/tutorial/object