반응형
thead 에 last th 지우기
$('thead tr').find('th:last').filter(function(){ if($(this).parent().children().length >= 3){ return $(this); } }).remove();
tbody에 last td 지우기
$('tbody tr').find('td:last').filter(function(){ if($(this).parent().children().length >= 9){ return $(this); } }).remove();
firefox의 console 탭에서 위의 명령어들을 실행시키고. 바뀐 HTML을 복사해서 docs에 대치
반응형
'wEb > javascript' 카테고리의 다른 글
CommonJS(커먼JS) (0) | 2018.12.19 |
---|---|
jquery .css 변수 사용 (0) | 2013.09.29 |
keydown(), keyup(), keypress() (0) | 2013.09.28 |
.live() 와 .bind() (0) | 2013.09.28 |
preventDefault(), stopPropagation(), return false; (0) | 2013.09.28 |
mouseenter와 mouseleave를 동시에 쓰는 함수 hover() (0) | 2013.09.28 |
$(document).ready (0) | 2013.08.16 |
jQuery API .nextAll() test (0) | 2013.06.07 |
제이쿼리 트래버싱_jquery traversing API (0) | 2013.06.06 |
자바스크립트 배열작성 방식 3가지 (0) | 2013.03.25 |