';
app += '';
app += rowALL-(rowCount+i-1);
app += ' | ';
app += '';
app += ' ';
app += ' | ';
app += '';
app += ''+req.responseJSON[i][2]+'';
app += ' | ';
app += '';
app += ''+req.responseJSON[i][4]+'';
app += ' | ';
app += '';
app += ' ';
app += ' | ';
app += '';
app += ' ';
app += ' | ';
app += '';
app += req.responseJSON[i][7];
app += ' | ';
app += '';
app += req.responseJSON[i][8];
app += ' | ';
app += '';
}
$('tbody').append(app);
app = '';
processing = false;
});
}
// INITIAL Load ...
rowCount = ($('tbody tr').length);
if(rowCount===0)
{
console.log('rowCount ist ' + rowCount);
insert(rowsGET,rowCount);
}
$(window).scroll(function() {
rowCount = ($('tbody tr').length);
console.log(rowCount);
var rowCall = rowCount - rowOffset;
var eTop = $('tbody tr:eq('+rowCall+')').offset().top; //get the offset top of the
var rowCallPOS = eTop - $(window).scrollTop();
log(rowCall+' is on Pos: '+rowCallPOS);
// Control for Ajax
if (processing) { return false; }
// if trigger reached, send an Request
if(rowCallPOS