var Input = function Input(obj){
function Input(obj) {
this.elem = obj;
this.status = false;
...
this.elem.keydown(this.handlerValidate);
};
Input.prototype.handlerValidate = function() {
// this переопределся, сейчас сдель elem
var str = this.elem;
}
function init() {
var tempNew = new Input(obj);
return tempNew;
}
return init();
}