選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

8 行
211 B

  1. jQuery(function($) { // onload
  2. $('select').bind('focusin', function() {
  3. this.tmpIndex = this.selectedIndex;
  4. }).bind('focus', function() {
  5. this.selectedIndex = this.tmpIndex;
  6. });
  7. });