rbrecruiter/public/js/switches.js

7 lines
165 B
JavaScript
Executable File

$("#jointype").on('change', function() {
if ($(this).is(':checked')) {
$(this).attr('value', '1');
} else {
$(this).attr('value', '0');
}
});