jQuery(function($) { $(".hover-link").parent('a').remove(); // 게시판 > 언론보도 $(".board-blank .bbsnewf5").each(function() { var content = $(this).find('.gallery_etc').hide().text().replace('[linkurl : ', '').replace(']', ''); $(this).find('table td:first').append(``); }); // 게시판 > 언론보도 > 추출 $(".board-blank-output .owl-item").each(function() { var content = $(this).find('.board_output_gallery_etc').parent().hide().end().text(); $(this).find('table td:first').append(''); }); // 게시판 > 영상미디어 $(".board-video .bbsnewf5").each(function() { var content = $(this).find('.gallery_etc').hide().text().replace('[linkurl : ', '').replace(']', ''); $(this).find('table td:first').append(``); }); // 게시판 > 영상미디어 > 추출 $(".board-video-output .owl-item").each(function() { var content = $(this).find('.board_output_gallery_etc').parent().hide().end().text(); $(this).find('table td:first').append(''); }); // 게시판 매장찾기 $(".board-store tr").addClass('list-store').removeAttr('onclick'); $(".board-store .list-store").each(function() { var mapsrc = $(this).find('.bbsetc_add4').text(); $(this).find(".bbsetc_add4").empty().append(``); }); // 공백제거 $(".table-nbsp").html((_, html) => html.replace(/ /g, '')); // 추출 썸네일이미지 이벤트 $(".board-hover-event .board_output_gallery_img img").addClass("all-ts border border-light-subtitle border-2 h-border-color h-shadow"); $(".board_output_gallery_img br").remove(); });