http://mottie.github.com/tablesorter/docs/example-options-headers.htmlからこのコードを取得しました:
// BONUS TIP: disable a column using jQuery data directly
// but do it before the table initializes
$("table thead th:eq(5)").data("sorter", false);
これは機能し、以下に示すように 2 行目を追加して、フィルタリングを無効にすることができます。しかし、それらを 1 つの行にまとめたいと考えています。どうすればいいですか?
// I Want to combine this into the prev line
$("table thead th:eq(5)").data("filter", false);