Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save aatronco/2722b8997901ff2ac81f179fce1a02a6 to your computer and use it in GitHub Desktop.

Select an option

Save aatronco/2722b8997901ff2ac81f179fce1a02a6 to your computer and use it in GitHub Desktop.
var selectName = "order_other_boleta_o_factura"
function validateFactura(){
if( $("#" + selectName ).val() == "factura" ) {
$("#other_giro,#other_razon_social").show();
$("#order_other_giro,#order_other_razon_social").attr('required','required');
} else {
$("#other_giro,#other_razon_social").hide();
$("#order_other_giro,#order_other_razon_social").removeAttr('required');
}
}
$("#order_other_boleta_o_factura").change(validateFactura);
$(document).ready(validateFactura);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment