Tablesorter 2.0: Sort a Multiple Decimal numeric String 19.0.31.3109
I am currently using the Tablesorter 2.0. I already have the default set up as...
Code
<script>
// call the tablesorter plugin
$(document).ready(function()
{
$("#myTable").tablesorter( {
sortList: [[1,0]],
});
}
);
</script>
End Code
What I am trying to do now, sort a multiple decimal numeric string like 19.0.31.3109, 19.0.31.3107,19.0.31.3110, 19.0.31.3114 based on their order. It will not sort number and others and trying basically about everything... Any ideas on how I would sort this?