I have a large table/grid that has events on each row, table headers, etc.
Instead of me generating events or binding events to each cell, would it be better to put a 'global' event and then I believe when clicked or mouseover events occur, it will bubble up to my 'global' event on the entire table and then I get filter the event caller and react.
I've read about this before, but not sure if I have the idea correct.
Are there any gotcha's with this approach?