Effective Event Binding with jQuery

If anyone wants it smaller, I had a go at minifying it :slight_smile:

$.extend({
    hook: function(h) {
        return !h||h==='*'?$('[data-hook]'):$('[data-hook~="'+h+'"]');
    }
});