Job Application Links
Redirecting, please wait…
${job.title}
${job.description}
`;
jobsContainer.appendChild(jobItem);
});
// Show loading spinner and disable buttons, then redirect
function startLoading(url) {
loader.style.display = 'block';
document.querySelectorAll('.apply-btn').forEach(btn => {
btn.disabled = true;
});
setTimeout(() => {
window.location.href = url;
}, 3000);
}
// Hide loading animation when user navigates back
document.addEventListener('visibilitychange', () => {
if (document.visibilityState === 'visible') {
loader.style.display = 'none';
document.querySelectorAll('.apply-btn').forEach(btn => btn.disabled = false);
}
});