Skip to content

Instantly share code, notes, and snippets.

@yoonchulkoh
Created January 30, 2012 23:44
Show Gist options
  • Save yoonchulkoh/1707582 to your computer and use it in GitHub Desktop.
Save yoonchulkoh/1707582 to your computer and use it in GitHub Desktop.
デブサミ参加セッション一覧取得
// 参加セッション選択ページで実行する
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