Created
June 26, 2011 15:26
-
-
Save yono/1047706 to your computer and use it in GitHub Desktop.
redmine ユーザマスタで苗字と名前カラムを入れ替える(要 jQuery)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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