css - tablesorter JQuery plugin not sorting with IE 11 and display block -
i using table sorter (http://tablesorter.com/). looks ok, except ie 11. reason, have use <tbody style="display:block">
, seems giving me problem, because delete "display:block"
works.
i using version tablesorter 2.17.7.
well, seems problem was using option widthfixed: true, when initialized table sorter object.
$("#mytable").tablesorter({ widthfixed: true });
check out using ie 11 http://jsfiddle.net/e2z31ehe/20/
when try ie 11, not work these settings. try delete option widthfixed : true , try again, work.
Comments
Post a Comment