yo(selector).on(event, fn)

Attach an event to the selector

yo('.myclass').on('click', function (e) {
    console.log('Clicked');
});

Go to index