$(document).ready(function() { $('.new_blog > table > tbody').addClass('blog_list'); $('.new_blog > table > tbody > tr').addClass('blog_item'); $('.new_blog > table > tbody > tr:nth-child(1)').addClass('first'); $('.new_blog > table > tbody > tr:nth-child(2), .new_blog > table > tbody > tr:nth-child(3)').addClass('basic'); $('.new_blog .board_output_gallery_img').parent('tr').addClass('img_box'); $('.new_blog .board_output_gallery_subject').closest('tr').addClass('text_box'); $('.new_blog .board_output_gallery_img').closest('tbody').addClass('cont_box'); $('.new_blog .cont_box').each(function() { var link = $(this).find('.board_output_gallery_subject a').attr('href'); $(this).find('.text_box').append('Detail'); }); $('.board_output_gallery_description').contents().filter(function() { return this.nodeType === 3 && this.nodeValue.includes('\u00A0'); //  ¸¸ Æ÷ÇÔµÈ ÅؽºÆ® ³ëµå ã±â }).each(function() { this.nodeValue = this.nodeValue.replace(/\u00A0/g, ''); //  ¸¸ Á¦°Å }); $('.board_output_gallery_description').each(function() { const text = $(this).text(); const updatedText = text.slice(0, -6) + '..'; // µÚ¿¡¼­ 6±ÛÀÚ Á¦°Å $(this).text(updatedText); }); });