Delegate all events with one call.
delegate(document.body, {
'click .btn-test': function () {
alert('click button');
},
'focus .input-test': function (e) {
alert('focus')
}
});IE9+
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Delegate all events with one call.
delegate(document.body, {
'click .btn-test': function () {
alert('click button');
},
'focus .input-test': function (e) {
alert('focus')
}
});IE9+