Hi folks,

I have a tabulated set of data (table id=tbl_assetList), with the last column of each row providing a "delete it" link to the following function...

function fnDeleteNodeTransaction(ni,pi,ai){
    $("#theIndicator3").show();
    $("#tbl_assetList a").click(function(){$("tr").hide()});
$.get("scripts/ajax_ramosus_editor.asp?id=4&pblID="+pi+"&iAssetID="+ai+"&nodeID="+ni, function(responseText){
        
$("#currentAssetsTable").html(responseText).highlightFade({color:'yellow',speed:2000,iterator:'sinusoidal'});
        $("#theIndicator3").hide();
    });
}

My attempt at hiding the deleted item's row (line 3) is successful in hiding the entire table for reasons that are not obvious to me, but I suspect are clearly obvious to you.

I'd appreciate some illumination here.

Thanks,

Bruce
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to