Código:
Cannot set property 'disabled' of null
Código
y Aquí esta mi JS
Código
Lo que quiero es que un botón se inhabilite cuando seleccione el otro, leí que esto puede ser por que aun no carga la pagina probé solucionar esto con este código:
function tp_cits(tipo){ if(tipo == 0){ document.getElementById("btn-two").disabled = true; document.getElementById("btn-one").disabled = false; document.getElementById("preciotxt").innerHTML="<strong>Precio: </strong>2000"; }else if(tipo == 1){ document.getElementById("btn-two").disabled = false; document.getElementById("btn-one").disabled = true; document.getElementById("preciotxt").innerHTML="<strong>Precio: </strong>1000"; } }
Código
Pero con eso me da este error :
$(document).ready(function(){ function tp_cits(tipo){ if(tipo == 0){ document.getElementById("btn-two").disabled = true; document.getElementById("btn-one").disabled = false; document.getElementById("preciotxt").innerHTML="<strong>Precio: </strong>2000"; }else if(tipo == 1){ document.getElementById("btn-two").disabled = false; document.getElementById("btn-one").disabled = true; document.getElementById("preciotxt").innerHTML="<strong>Precio: </strong>1000"; } } } });
Código:
tp_cits is not defined