Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 328 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 328 Bytes

delegate-events

Delegate all events with one call.

Usage

DEMO

delegate(document.body, {
    'click .btn-test': function () {
        alert('click button');
    },
    'focus .input-test': function (e) {
        alert('focus')
    }
});

Compatibility

IE9+