views:

11

answers:

1

Hi! I'm using jQuery Tablesorter and I have a problem sorting tables with date values of format: 16-Jan-2010

How do I make them sort properly?

Thanks in advance!

+1  A: 

You should write your own parser. for jQuery Tablesorter. Try converting the date to a format that does sort (example, YYMMDD will sort correctly as strings :))

Konerak