참고 : https://mottie.github.io/tablesorter/docs/index.html 스크롤을 사용하기위해 widget-scroller.js도 사용하였다. 1. jquery와 함께 플러그인 include. 2. 스크립트 지정 $(function(){ //테이블에 콤마가있는 숫자데이터가있어서 소팅시 콤마없애고 소팅해줘야 정확히된다. $.tablesorter.addParser({ // set a unique id id: 'comma', is:function(s){return false;}, format: function(s) {return s.replace(/[\,\.]/g,'');}, type: 'numeric' }); $(".tablesorter").tablesorter({ widthF..