I have a HTML table. For each row there is a record in the database, also on each row I have a delete button (image icon).
On delete I use Ajax request to delete the record from the database On success, I display a message and I hide()/remove() the row from the table.
It works fine. BUT if I click real FAST on multiple rows, the records get deleted ok, but some of the rows are still displayed.
I have my click function attached to a class
$(".tog").click(function(e){ ...
I already read about jQuery's "toggleClass(), delay()", those did not work.
Any ideas?