- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
$(document).ready(function () {
$('.input_control').attr('checked', true);
$('.input_control').click(function () {
if ($('input[name=' + $(this).attr('value') + ']').attr('disabled') == false) {
$('input[name=' + $(this).attr('value') + ']').attr('disabled', true);
} else {
$('input[name=' + $(this).attr('value') + ']').attr('disabled', false);
}
});
});