Last active
February 7, 2019 15:40
-
-
Save aatronco/7325080efd28d2953b6758f059330cfb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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