scrapy/sites/static.scrapy.org/js/ie_pre7_hacks.js

8 lines
211 B
JavaScript

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