Skip to content

Instantly share code, notes, and snippets.

@yono
Created June 26, 2011 15:26
Show Gist options
  • Save yono/1047706 to your computer and use it in GitHub Desktop.
Save yono/1047706 to your computer and use it in GitHub Desktop.
redmine ユーザマスタで苗字と名前カラムを入れ替える(要 jQuery)
var hoge = $('.list').children('thead').find('th')[1];
$(hoge).insertAfter($('.list').children('thead').find('th')[2]);
$.each($('tr.user'), function(){
$($(this).find('td')[1]).insertAfter($(this).find('td')[2])
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment