What is Event Delegation Model »



Event Delegation Model Wen the user generates an event, the component delegates(handovers) that event to a listner. Listener is an interface that contains same methods, so Listener will delegate the event to one of the methods, finally the method is executed and the event is handled, this is called event delegation model. Event delegation model [...]