Hi Martin,
I want to show what column was sorted and the direction, that is why i had the log tags. I really liked your example, i have been trying to add log tags to show what two columns are being sorted.
$(“#log”).html(“1st column: ” + sortedcolumn + ” ” + sortdirection + “”);
$(“#log2”).html(“2nd column: ” + sortedcolumn + ” ” + sortdirection + “”);
I would like to see if a example of this. I want the log tags to show as you click on the first column and then second column it will show the next. And if one or the other column is not sorted then it will show 1st column null and 2nd column null
http://jsfiddle.net/8bs20z59/2/