hi - great lib, I added a function that I've been finding useful : <pre> ..... bind_once : function(event, fct) { var fn = function() { fct.call(this) this.unbind(event, fn) } this.bind(event, fn) }, </pre> perhaps you'd like to merge it in ?