Код: Выделить всё
$.get("/getItems/"+count, function(data){
tr=" ";
td1=""+data["ID"]+"";
td2=""+data["UNITID"]+"";
td3=""+data["INSTNM"]+"";
td4=""+data["ADDR"]+"";
td5=""+data["CITY"]+"";
td6=""+data["STABBR"]+"";
td7=""+data["ZIP"]+"";
$("#table1").append(tr+td1+td2+td3+td4+td5+td6+td7);
(tr.find(div)).fadeIn(300);
var rowCount = $('#table1 tr').length;
console.log(rowCount);
if(rowCount>20)
{
removeFirstRowAndAppendNewItem(data)
}
function removeFirstRowAndAppendNewItem(data)
{
console.log("in callback"); // to confirm we have reached here
$("table#table1 tr:nth-child(2)").remove();}});
Подробнее здесь: https://stackoverflow.com/questions/341 ... to-a-table