File: /home/qhl5pt3kkb1d/public_html/tstp-old/js/final-admits.js
$(document).ready(function () {
$.ajax({
type: "GET",
url: "https://admin.thesmarttestprep.com/api/getfinaladmits",
success: function (data) {
var html = "";
var successCount = 1;
for(i=0; i<data.data.length; i++) {
html += '<tr>';
html += '<td scope="row">'+successCount+++'</th>';
html += '<td scope="row">'+data.data[i].fname+' '+data.data[i].lname+'</th>';
html += '<td scope="row">'+data.data[i].university+'</th>';
html += '<td scope="row">'+data.data[i].country+'</th>';
html += '<td scope="row">'+data.data[i].course+'</th>';
html += '</tr>';
}
$("#FinalAdminTableBody").html(html);
},
});
});