Skip to main contentProtect Yourself Against Recruitment Scams:
Protect Yourself Against Recruitment Scams:
This is some text inside of a div block.
Text LinkGeneral

No positions match these filters
${officeName}`)
}
e.departments.forEach((e) => {
const departmentName = e.name
e.jobs.forEach((e) => {
const jobId = e.id
const jobTitle = e.title
const jobLocation = e.location.name
console.log(jobLocation)
const jobHref = "/job-post?job_id=" + jobId;
var wrapper= document.createElement('div');
wrapper.innerHTML= `
`; var div = wrapper.firstChild;
dataf.push(div)
})
})
})
})
.then(function() {
departmentsArray.forEach(function(e) {
$(departmentDropdown).append(`
`)
})
window.fsAttributes = window.fsAttributes || [];
window.fsAttributes.push([
"cmsfilter",
async (r) => {let [t] = r,
{ listInstance: e } = t
console.log(dataf)
e.clearItems()
e.addItems(dataf)
t.storeFiltersData();
},
])
$(clearFilter).click(function() {
$(this).hide()
})
$(jobListItem).click(function() {
departmentTextQuery = ''
locationTextQuery = ''
$(clearFilter).show()
if($(departmentList).find(jobListChecked).length !== 0) {
const l = $(departmentList).find(jobListChecked).closest(jobListCheckbox).length
$(departmentList).find(jobListChecked).closest(jobListCheckbox).each(function(i, e) {
i !== (l-1) ? departmentTextQuery = departmentTextQuery + $(this).text() + ', ' : departmentTextQuery = departmentTextQuery + $(this).text() ;
$(departmentsText).text(departmentTextQuery)
})
$(textDropdown).text(`Departments (${l})`)
} else {
$(departmentsText).text('all departments')
$(textDropdown).text(`Departments`)
}
if($(locationList).find(jobListChecked).length !== 0) {
const l = $(locationList).find(jobListChecked).closest(jobListCheckbox).length
$(locationList).find(jobListChecked).closest(jobListCheckbox).each(function(i, e) {
i !== (l-1) ? locationTextQuery = locationTextQuery + $(this).text() + ', ' : locationTextQuery = locationTextQuery + $(this).text() ;
$(locationsText).text(locationTextQuery)
})
$(officeDropdown).text(`Locations (${l})`)
} else {
$(locationsText).text('all locations')
$(officeDropdown).text(`Locations`)
}
})
})
}