페이지 진입 시, UI를 상황별로 나눠야 하는 경우가 있어서, 라디오 이벤트를 찾아 봤다. # 라디오 버튼 체크 - Vanilla JavaScript var btn = document.getElementById('btn'); btn.checked = true; - jQuery $('input[name="btn"]').prop('checked', true); $('input:checkbox').val() == "true"; $('input[type=radio][id=btn]').attr('checked', true); # 다른 라디오 버튼 눌렀을 때(바뀔 때) 이벤트 - jQuery $('input[type=radio][name=btn]').change(function() { // method }); # ..