25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

8 satır
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. });