$.fn.removeCol = function(col){
if(!col){ col = 1; }
$(‘tr td:nth-child(‘+col+’), tr th:nth-child(‘+col+’)’, this).remove();
return this;
};
Kullanımı
3.satırı silmek için
$(‘table’).removeCol(2);
ilk satırı silmek için
$(‘table’).removeCol();