jQuery(function($) { // 게시판 공백 제거 $(".table-nbsp").each(function() { var $this = $(this); $this.html($this.html().replace(/ /g, '')); // $this.html($this.html().replace('', '')); }); // 게시판 외부사이트 연결 var thumbCount = $(".bbsnewf5").length; $(".hover-link").parent('a').remove(); $(".board-blank .bbsnewf5").each(function(index) { var galleryEtc = $(this).find('.gallery_etc'); var content = galleryEtc.text().replace('[linkurl : ', '').replace(']', ''); $(this).find('table td:first').append(''); }); // 게시판 유튜브 팝업 구현 $(".board-video .bbsnewf5").each(function(index) { var galleryEtc = $(this).find('.gallery_etc'); var content = galleryEtc.text().replace('[linkurl : ', '').replace(']', ''); $(this).find('table td:first').append(''); }); $(".gallery_etc").css('display', 'none'); });