If you’ve read any of my posts you might have seen the pattern I like to use for using event delegation. That pattern, in its simplest form, looks like this: $(document).ready({ $(‘body’).on(‘click’,’div’,changeSomething); function changeSomething(e){ // do something } }); For me this is super useful – I can dynamically add elements to the DOM and […]