Popular Categories
The Chadwell Difference
The Latest from Chadwell Supply
function convertDate(d){ var d = new Date(d); newD = d.getMonth() + ‘/’ + d.getDate() + ‘/’ + d.getFullYear(); return newD; } $.getJSON(“https://recruiting.paylocity.com/recruiting/v2/api/feed/jobs/aeb03ab2-ffb8-4816-a35f-a9ff36d07ae2″, function (data) { var jobsData = ”; // ITERATING THROUGH OBJECTS $.each(data.jobs, function (key, value) { jobsData += ‘
‘+ convertDate(value.publishedDate) ; if (value.hiringDepartment !== null){ jobsData += ‘ – ‘ + value.hiringDepartment } jobsData += ‘
‘ + value.jobLocation.locationDisplayName + ‘
‘; }); //INSERTING ROWS INTO TABLE $(‘#jobRows’).append(jobsData); // console.log(data.jobs) });