Hi all,
I have a table on a page that is generated from MySQL database entries via AJAX request. I have a .live()
event for the table rows in that table, $(#myTable tbody tr).live('click', func...)
, which opens a jQuery UI dialog window with extra information from the table row. In the last cell of the row, I have icons for "quick actions" (delete, edit, etc). I have bound these images to .live()
events as well, however when they are clicked the image's .live()
executes, then so does the one from the $('#myTable tbody tr).live()
. Is there something to do to prevent the second .live event from executing?
If it makes a difference, the icon .live is located above the table .live. I can post any code that's needed, but I feel like what I've provided should clearly state the problem. Thanks in advance!