If you are using the Tablesorter Jquery plugin with the pager add on the table will not display any of the data. The data is there but it is hidden.
I suspect the browse
One simple soltion - change the line in jquery.tablesorter.js from
if($.browser.msie)
to:
if(/msie/.test(navigator.userAgent.toLowerCase()) || window.navigator.userAgent.indexOf("Trident/7.0") > 0)
works for me.
/msie/.test(navigator.userAgent.toLowerCase())
detects IE version 10 or below.
window.navigator.userAgent.indexOf("Trident/7.0") > 0
detects IE 11.