this.init = function() { var self = this; document.onkeyup=function(e) { //this.init() -> this ссылается не на ваш класс, а на window. self.init(); // -> self ссылается на ваш класс }; };