javascript - Table child rows to be sorted with parent row -
<script> $(document).ready(function() { $("#123").tablesorter(); } ); $(document).ready(function() { $("#123").tablesorter( {sortlist: [[0,0], [1,0]]} ); } ); </script>
this script. want child rows of table sorted when sort parent rows.
Comments
Post a Comment