Código Javascript
:
Ver originalfunction es_vacio(){
var valor=document.getElementById('matricula').value;
valor=valor.trim();
if (valor== ""){
document.getElementById('boton_busqueda').disabled=true;
}else{
document.getElementById('boton_busqueda').disabled=false;
}
}
.trim()