I have a table that looks something like this:

<tr id="1">
     <td>Name</td>
     <td>E-Mail</td>
     <td><a href="#" class="accept">Accept</a> - <a href="#"
class="deny">Deny</a></td>
</tr>

With multiple rows. Each row has a unique ID (numerical). I need to be
able to click on an a.accept, find WHICH one was clicked (which row it
is in), and get the ID of that row. I've been looking around and I
found parent(), but I'm not sure how I can specifically get which
accept link was clicked.

Can anyone help?

Reply via email to