My PHP script creates a table with several rows of items. Column1 in each row displays emptybox.jpg, and the last column is an anchor link to select the item on that row:
output .= '<a href="./select_item.php id=select'.$product['id'].'"></a>';
output .= '<a href="./deselect_item.php id=deselect'.$product['id'].' style.display='"none"'"></a>';
(Note that the style is included inline just for this post -- all styles reside in an external css, and I use a class= to hide all deselect anchors by default)
When an anchor is clicked (item is selected) I want jquery to swap emptybox.jpg for checkmark.jpg, and to swap the "Select" anchor for the anchor. Ideally, those should be toggles, so the reverse would also work (clicking DeSelect will hide both checkmark.jpg and the DeSelect anchor, and will redisplay both emptybox.jpg and the Select anchor).
Each row icon is identified by a tag, with the productID number appended.
output .='<div class="checked" id="chk'.$product['id'].'"><img="checkmark.jpg" /></div>';
output .='<div class="empty" id="mt'.$product['id'].'" .style.display="none"><img="emptybox.jpg" /></div>';
The jquery code must identify which "select" anchor tag was clicked so that it can show/hide the appropriate element pairs (emptybox.jpg/checkmark.jpg, and Select/Deselect anchors). Here's what I have so far:
<script type="text/javascript">
$(function() {
$("a").click(function(){
$("#mt").hide();
$("#chk").show();
});
});