I have a HTML table with various rows, each have a delete button with a class.
On the DocumentReady event I wire up all buttons with this class to handle the click event.
On the click event it does a jQuery post which deletes data from the database and returns the table with the removed row.
If I go to click another delete button it doesn't do anything as if the click event is not wired up. I have tried wiring it up in the OnSuccess event as well as DocumentReady but nothing.