Skip to content

Instantly share code, notes, and snippets.

@suruseas
Created February 12, 2014 16:11
Show Gist options
  • Save suruseas/8958630 to your computer and use it in GitHub Desktop.
Save suruseas/8958630 to your computer and use it in GitHub Desktop.
テーブル(id=#table)の行をソートするよ。その一。
$('#table tr').sort(function(a, b){return ( Number( $('td:eq(0)', a).text() ) - Number( $('td:eq(0)', b).text() ) );}).each(function(){$('#table').append($(this));});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment