더보기버튼을 눌렀을때, 숨겨있던 list가 노출되는 소스입니다. 리스트가 전부 노출됬을때 more 버튼이 사라집니다. [HTML] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 MORE [js] $('.list > div').hide(); $(".list > div").slice(0, 5).css("display", "block"); $("#load").click(function(e){ e.preventDefault(); $(".list >div:hidden").slice(0, 5).fadeIn(200).css('display', 'block'); // 클릭시 more 갯수 지저정 if($(".list >div:hidden").length == 0){ // 컨텐츠 남아있는지 확인 $('..