jQuery(function ($) { $(document).ready(function () { if ($('.photo_output').length) { var $subject = []; $('.photo_output table').each(function (i) { $subject[i] = $(this).find('.board_output_gallery_subject').text(); $(this).find('tr').not(':eq(0)').remove(); $(this).find('tr').eq(0).find('td.board_output_gallery_img > a').append('

' + $subject[i] + '

'); }); } $('td.board_output_gallery_img').each(function (i) { $(this).find('br').remove(); }); $('.photo_output > tbody > tr > td').addClass('wow fadeInUp'); // }); $(document).ready(function () { if ($('.photo_list').length) { var $subject = []; $('.photo_list .bbsnewf5').each(function (i) { $subject[i] = $(this).find('.gallery_title').text(); $(this).find('> table tr').not(':eq(0)').remove(); $(this).find('> table tr').eq(0).find('a').append('

' + $subject[i] + '

'); }); } }); });