(function($){ $.ajax({ type:'GET', url:'/', dataType:'html', error:function(jqXHR, textStatus, errorThrown){ console.log([ jqXHR, textStatus, errorThrown ]); }, success:function(response, textStatus, jqXHR){ const eleCopyBannerListTo0 = $('#copy_banner_list0'), eleCopyBannerListFrom0 = $(response).find('#copy_banner_list0'), eleCopyBannerListTo1 = $('#copy_banner_list1'), eleCopyBannerListFrom1 = $(response).find('#copy_banner_list1'); if(eleCopyBannerListFrom0[0]) eleCopyBannerListTo0 .empty() .html(eleCopyBannerListFrom0.html()); if(eleCopyBannerListFrom1[0]) eleCopyBannerListTo1 .empty() .html(eleCopyBannerListFrom1.html()); } }); })(jQuery);