mirror of
https://github.com/scrapy/scrapy.git
synced 2025-02-27 23:03:51 +00:00
8 lines
211 B
JavaScript
8 lines
211 B
JavaScript
|
jQuery(function($) { // onload
|
||
|
$('select').bind('focusin', function() {
|
||
|
this.tmpIndex = this.selectedIndex;
|
||
|
}).bind('focus', function() {
|
||
|
this.selectedIndex = this.tmpIndex;
|
||
|
});
|
||
|
});
|