# ford-delegate **Repository Path**: mirrors_developit/ford-delegate ## Basic Information - **Project Name**: ford-delegate - **Description**: Delegate Responsibly® - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-07-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ford-delegate ============= > Delegate Responsibly® This is just a plugin for ford.js that adds event delegation support to `on()` and `off()`. --- Usage Example ------------- ```js // example handler: function handler(e) { // e.target is the element that matched your selector alert( e.target.href ); return false; } // add a delegate handler: $('.parent').on('click', 'a', handler); // remove a delegate handler: $('.parent').off('click', 'a', handler); ```