Delegate Custom Events for Datatables

I often use the jQuery datatables plugin when I want a dynamic table that includes sorting as well as next and previous functionality. I mistakenly thought I could just tie my hover and click events to each row in the table as follows: $(’#speaker-archive-table tbody tr’).hover(this.hoverRow, this.hoverRow); $(’#speaker-archive-table tbody tr’).on(’click’, this.selectRow); $(‘#speaker-archive-table tbody tr’).hover(this.hoverRow, this.hoverRow);Delegate Custom Events for Datatables See the full project…