I have to enable/disable multiple inputs when a select change. It works but I want to do it better. How can I improve my code?
$("#street_type").on("change", function(event){
if( $(this).val() == 1){
$("#clase_via").prop('disabled', true);
$("#nombre_via").prop('disabled', true);
$("#numero_via").prop('disabled', true);
...
$("#indicaciones").prop('disabled', true);
}
if( $(this).val() == 2){
$("#clase_via").prop('disabled', false);
$("#nombre_via").prop('disabled', false);
$("#numero_via").prop('disabled', false);
...
$("#indicaciones").prop('disabled', false);
}
});