From b0c361538261c0c6d2ee8293b356848761f789bc Mon Sep 17 00:00:00 2001 From: Cristopher Castro Date: Thu, 5 Dec 2024 19:14:59 -0300 Subject: [PATCH] . --- privado/app.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/privado/app.js b/privado/app.js index c6f82755..4ce32ce0 100644 --- a/privado/app.js +++ b/privado/app.js @@ -1992,9 +1992,9 @@ $( document ).ready(function() { let alternativas = ["C. Luteo presente","C. Luteo ausente"] if (alternativas.includes(this.value) == true){ - the("foliDereMay").classList.add("disabled") + the("foliDereMay").setAttribute("disabled", "true"); } else { - the("foliDereMay").classList.remove("disabled") + the("foliDereMay").removeAttribute("disabled", "true"); } } @@ -2002,9 +2002,9 @@ $( document ).ready(function() { let alternativas = ["C. Luteo presente","C. Luteo ausente"] if (alternativas.includes(this.value) == true){ - the("foliIzqMay").classList.add("disabled") + the("foliIzqMay").setAttribute("disabled", "true"); } else { - the("foliIzqMay").classList.remove("disabled") + the("foliIzqMay").removeAttribute("disabled", "true"); } } });