Raj
Raj

Reputation: 570

Event Capturing in Jquery

How do we do event capturing in Jquery. I know all about event bubbling and event capturing in JavaScript but interested to know if Jquery has something similar for event capturing. If not, then how can I extend Jquery code for this additional functionality. Please guide. Thanks in adv.

Upvotes: 2

Views: 1172

Answers (2)

Raj
Raj

Reputation: 570

I found the comment Event Capturing in Jquery upto my satisfaction. Hence closing this question.

Upvotes: 0

Bhojendra Rauniyar
Bhojendra Rauniyar

Reputation: 85545

jQuery events works with event bubbling and it doesn't support capturing. So, there's no sense to stop event capturing.

See this and this for more information.

Upvotes: 1

Related Questions