
function MyClass()
{
this.Attr1 = null;
this.Button = null;

this.AttachEvent = function()
{
this.Button.onclick = this.ButtonClickHandler;
}
this.ButtonClickHandler = function()
{
this.Attr1 = this.Button.value;
}
}
function MyClass()
{
var me = this;
this.Attr1 = null;
this.Button = null;

this.AttachEvent = function()
{
me.Button.onclick = me.ButtonClickHandler;
}
this.ButtonClickHandler = function()
{
me.Attr1 = me.Button.value;
}