[jQuery] Re: Trigger Dom Event

2008-10-03 Thread greenteam003
Dave, Thanks for the suggestion. This is the direction I've gone in the past and am using currently, but it can get pretty ugly with event delegation pretty quickly on larger applications. For example when you want to know which mouse button was clicked, you need the actual event object to det

[jQuery] Re: Trigger Dom Event

2008-10-03 Thread Dave Methvin
> I'm having problems with jQuery events and event delegation.  I've got a > table with multiple rows and a click event registered on the tbody of that > table.  I'm trying to programmatically "click" a cell so that the event will > bubble up to the tbody click event with the correct target.   I