링크 태그 target을 '_blank'로 자동으로 바꾸기 edit

블로거에 적용하고자 셀렉터를 $('div.post-body a')로 주었다.
<script type='text/javascript'>
  $(document).ready(function(){
    $('div.post-body a').each(function() {
      if ($(this).attr('href')) {
        $(this).attr('target', '_blank');
      }
    });
  });
</script>

0 comments:

Post a Comment

Newer -> <- Older