Last active
March 21, 2020 16:57
-
-
Save aatronco/6db22d902cb483a2a933eac987ca3323 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> | |
var verify_document = function() { | |
if ($("#order_other_documento_electronico option:selected").val() == "Factura Electronica") { | |
$("#other_giro").show() | |
$("#order_other_giro").attr("required", "required") | |
$("#other_razon_social").show() | |
$("#order_other_razon_social").attr("required", "required") | |
} else { | |
$("#other_giro").hide() | |
$("#order_other_giro").removeAttr("required") | |
$("#other_razon_social").hide() | |
$("#order_other_razon_social").removeAttr("required") | |
} | |
} | |
$(document).ready(verify_document) | |
$("#order_other_documento_electronico").change(verify_document) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment