Using the jQuery tablesorter plugin . I wonder how could I make it work with dates in the full format:
"Jan 21, 2009 16:00"
Problem is that when that date (a string) has been localized with user current locale
"gen 21, 2009 16:00"
Do I have to write a custom sorter for each locale?
Thanks.
`<table id="orders" class="sortable">
<thead><tr><th>Da</th><th>Al</th><th class="right">Camere</th><th class="right">Spesa dell'ordine</th></tr></thead>
<tr>
<td>gen 21, 2009 22:00</td><td>gen 22, 2009 22:00</td><td class="right">1</td><td class="right">30.00€</td>´
</tr>