[jQuery] Hiding a row in a table
<html>
<body>
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...
<tt>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();
});
}
</tt>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
</body>
</html>
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/