-------------------------------------html-------------------------------------<footer> <span>하단 필요내용을 입력</span></footer> -------------------------------------script-------------------------------------<script type="text/javascript"> function stickyFooter(){ document_height = $(document).height(); // 문서 전체 높이 document_scrollTop = $(document).scrollTop(); // 문서 전체 높이 중 스크롤 위치 window_height = $(window).height(); // 창 높이 footer_height = $("footer").height(); gap = document_height - footer_height - window_height; bottom = document_scrollTo..........