jquery 폼들을 일괄적으로 활성화 / 비활성화
function SetInputYN(Y) { if (Y) { $(':input:text').each(function (index) { $(this).prop('disabled', true) }); $(':input:radio').each(function (index) { $(this).prop('disabled', true) }); $(':input:checkbox').each(function (index) { $(this).prop('disabled', true) }); $('textarea').each(function (index) { $(this).prop('disabled', true) }); $('#ibFinish').prop('disabled', true); } else { $(':input'..