Skip to content

Instantly share code, notes, and snippets.

@aatronco
Last active March 21, 2020 16:57
Show Gist options
  • Save aatronco/6db22d902cb483a2a933eac987ca3323 to your computer and use it in GitHub Desktop.
Save aatronco/6db22d902cb483a2a933eac987ca3323 to your computer and use it in GitHub Desktop.
<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