Möchte bei untenstehender Tabelle die jeweilige Id der Zeile die ausgewählt (= gedrückt) wurde an eine JS Funktion übergeben(damit ich die Zeile in der Datenbank löschen kann) nur weiss ich nicht wie ich dass bewerkstelligen kann ohne Form ???
Wär für jeden tipp dankbar
lg kutz
<table border="1">
<tr>
<th>
ID
</th>
<th>
FIRSTNAME
</th>
<th>
LASTNAME
</th>
<th>
EMAIL
</th>
</tr>
<c:forEach var="contact" items="${requestScope.contactList}">
<tr>
<td>
<c:out value="${contact.id}"/>
</td>
<td>
${contact.firstName}
</td>
<td>
${contact.lastName}
</td>
<td>
${contact.email}
</td>
<td>
<input type="button" value="delete" onclick="deleteEntry()">
</td>
</tr>
</c:forEach>
</table>