본문 바로가기
jquery

Tab menu 만들어서 링크 적용하기

by 바나냥 2020. 4. 6.
$('.tabLink ul li a').click(function(){
   if ($(this).attr('rel') != undefined) {
      $('.tabLink ul li a').removeClass('on');
      $(this).addClass('on');
      $('.tabList').hide();
      $($(this).attr('rel')).show();
   }
});

댓글