Event delegation in jQuery is a technique used to handle events for dynamically added elements. Instead of attaching an event handler directly to each element, you attach it to a parent element that is already in the DOM. For example:`$('#parent').on('click', '.child', function() { alert('Child clicked!'); });` handles clicks on `.child` elements, even if they are added later.