function sec01Reset(obj){
$(obj).parent().find('.ggang01').removeClass('active');
$(obj).parent().find('.ggang02').removeClass('active');
$(obj).parent().find('.ggang03').removeClass('active');
$(obj).parent().find('.ggang04').removeClass('active');
};
$('.btn.start').on('click',function(){
sec01Start(this);
});
$('.btn.reset').on('click',function(){
sec01Reset(this);
})
이 코드에서 버튼을 누르면 함수실행을 하게되는데,
저 this가 a나 b같은 매개변수인가요??
그 this와 obj부분을 어떤식으로 해석하면 좋을까요??