1 2 3 4 5 6 7 8 9 10
| $("#ctl00_contenu_fvExploitationAgricole_chkAdresseIdentique").on('change', function () {
if (this.checked) {
$("#ctl00_contenu_fvExploitationAgricole_txtAddrExploitationAjout").prop('disabled', true);
$("#ctl00_contenu_fvExploitationAgricole_txtCPExploitationAjout").prop('disabled', true);
}
else {
$("#ctl00_contenu_fvExploitationAgricole_txtAddrExploitationAjout").prop('disabled', false);
$("#ctl00_contenu_fvExploitationAgricole_txtCPExploitationAjout").prop('disabled', false);
}
}); |
Partager