onAfterDelete

fires after a comment has been deleted

void onAfterDelete(number|string id);
idnumber|stringthe ID of the comment

Example

$$("comments").attachEvent("onAfterDelete",function(id){
  // your code here
});

See also
Back to top