function fn(){ this.fn=function(){ this.fn=<!--код--> return alert(this.fn); } }
function fn() { this.fn = function() { alert('Resize!'); } } window.onresize = new fn().fn;