Jquery Table sorter and special characters
Posted
by kevin
on Stack Overflow
See other posts from Stack Overflow
or by kevin
Published on 2010-03-10T17:58:34Z
Indexed on
2010/03/11
20:34 UTC
Read the original article
Hit count: 356
Hi there, am using jquery tablesorter plugin and in my "country" column i got special characters like this: Índia.
The fact is that when i hit the header of the column to sort it, it puts my "Índia" at the end of the column. I guess the nav sees the Í instead of the real "I" with an accent.
Any clue on how to make it work even with accents ?
Here's the js code in my domready:
$.tablesorter.defaults.widgets = ['zebra'];
$.tablesorter.defaults.sortList = [[0,0]];
$("table").tablesorter();
Thanks in advance.
© Stack Overflow or respective owner