document.addEventListener('DOMContentLoaded', function() {
const jobsApiUrl = 'https://api.jungwild.io/jobs/pool/financial-services';
fetch(jobsApiUrl)
.then(response => {
if (!response.ok) {
// fehlerbehandlung
}
return response.json();
})
.then(data => {
const jobs = data.job;
// jobs einbetten
document.querySelector('#jobs').innerHTML = '...';