on
This method can be used to attach an event listener to the elements.
// Attach an event listener to the elements
on: function(event, callback) {
this.elements.forEach(function(element) {
element.addEventListener(event, callback);
});
return this;
}