1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-27 23:03:51 +00:00
scrapy/sites/static.scrapy.org/js/ie_pre7_hacks.js

8 lines
211 B
JavaScript
Raw Normal View History

jQuery(function($) { // onload
$('select').bind('focusin', function() {
this.tmpIndex = this.selectedIndex;
}).bind('focus', function() {
this.selectedIndex = this.tmpIndex;
});
});