I am using jQuery this._on()
function for binding mouse event and I would like to use event capturing concept in this._on()
.
this._on($("#myId"), "mousedown", callMouseDown);
callMouseDown: function (e) {
//Mouse down event
},
Anyone can help me, here how to apply event capturing concept (parent to child).
Thanks, Bharathi.