function toggleMode() { var linkElement = document.getElementById('styles-theme'); if (linkElement.getAttribute('href') === 'css/styles-jour.css') { linkElement.setAttribute('href', 'css/alliance.css'); } else { linkElement.setAttribute('href', 'css/horde.css'); } }