Created
January 30, 2012 23:44
-
-
Save yoonchulkoh/1707582 to your computer and use it in GitHub Desktop.
デブサミ参加セッション一覧取得
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
// 参加セッション選択ページで実行する | |
arr = []; | |
jQuery.each($('input[name=session]:checked'), function(){ arr.push ( $(this).next().next().text() ) }); | |
arr.sort(); | |
arr.join("\n"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment