Browse
For agents
About
Table Sorter
/
2.3
Table Sorter
v2.3
Switch version
trunk
1.0
2.0
2.1
2.2
2.3
Overview
Code
table-sorter
/
wp-script.js
wp-script.js
in Table Sorter 2.3, at wp-script.js
6 lines
184 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
jQuery
(
document
)
.
ready
(
function
(
$
)
{
2
$
(
'
.tablesorter .sortless
'
)
.
addClass
(
'
{sorter: false}
'
)
;
3
$
(
'
.tablesorter
'
)
.
tablesorter
(
{
4
sortLocaleCompare
:
true
5
}
)
;
6
}
)
;