[jQuery] Row editing and deletion

[jQuery] Row editing and deletion


[Sorry if duplicated; posted earlier right before Groups went down
with "Google Server Error" for over an hour and post still hasn't
shown up]
What are the best practices for handling row editing and deletion via
AJAX calls in jQuery? Specifically, how should I attach a row
identifier to each data row?
If I try to do it the "unobtrusive" way, I'll be attaching the click
event to my selected elements in ready(), but I'll need to reference
some sort of data row id when calling my AJAX edit/delete functions.
How should I do this?
I'm currently outputting data rows via a loop in my HTML template. I
could just add "onclick(row1)" to a bunch of "a" tags, but this
doesn't seem like a clean, jQueryesque way to handle this.