forked from miguel456/rbrecruiter
7 lines
165 B
JavaScript
Executable File
Vendored
7 lines
165 B
JavaScript
Executable File
Vendored
$("#jointype").on('change', function() {
|
|
if ($(this).is(':checked')) {
|
|
$(this).attr('value', '1');
|
|
} else {
|
|
$(this).attr('value', '0');
|
|
}
|
|
}); |