1: // prevent default
2: el.on('click', this.onClick, this, {preventDefault: true});
3:
4: // only stop propagation
5: el.on('click', this.onClick, this, {stopPropagation: true});
6:
7: // prevent default and stop propagation
8: el.on('click', this.onClick, this, {stopEvent: true});