Skip to content

Instantly share code, notes, and snippets.

@aatronco
Last active February 7, 2019 15:40
Show Gist options
  • Select an option

  • Save aatronco/7325080efd28d2953b6758f059330cfb to your computer and use it in GitHub Desktop.

Select an option

Save aatronco/7325080efd28d2953b6758f059330cfb to your computer and use it in GitHub Desktop.
<script>
$(document).ready(function(){
$('#other_razon_social, #other_giro').hide();
})
$('#order_other_boleta_o_factura').on('change', function() {
var option = $("#order_other_boleta_o_factura option:selected").val();
if(option == 'Factura Electrónica'){
$('#other_razon_social, #other_giro').show();
}else if(option == 'Boleta Electrónica'){
$('#other_razon_social, #other_giro').hide();
}else{
alert('Debe seleccionar "Factura Electronica" o "Boleta Electronica"');
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment