We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Ok
// 1) Quick test to see if this runs:
console.log('[Interview Guide] Footer JS loaded');
// 2) Core listener only:
const roleSelect = document.getElementById('role-level');
const nextBtn = document.getElementById('step1-next');
if (!roleSelect || !nextBtn) {
console.warn('[Interview Guide] Cannot find #role-level or #step1-next in the DOM.');
} else {
roleSelect.addEventListener('change', e => {
console.log('[Interview Guide] role changed to:', e.target.value);
nextBtn.disabled = !e.target.value;
});
}