document.addEventListener("DOMContentLoaded", function() { // Seleccionamos todos los checkbox del sitio var checkboxes = document.querySelectorAll('input[type="checkbox"].checkbox-toggle'); checkboxes.forEach(function(checkbox) { // Verificamos si el checkbox no tiene un atributo aria-label if (!checkbox.hasAttribute('aria-label')) { // Agregamos un aria-label si no está presente checkbox.setAttribute('aria-label', 'Mostrar menú de navegación'); } }); });