I have a table where I'm displaying some header information. I have a link on the far right of the table that, when clicked, I would like to have the detail information appear beneath the current row. How can I achieve this effect?
--Edit--
using your idea below, I tried the following code (which did not work) - 
function showRdmDtl(flxkey, data) {
    var flxkey;
    var anchorId='a_'+flxkey
    lResponse = JSON.parse(data);
    $.each(lResponse.rdmDetails, function(intIndex, objValue) {
     $(anchorId).closest('tr').after('').next().append(''+objValue.date+''+objValue.amount+'').show()
    });
}
Any idea why this would not work?