1b56857b861a1f127b674d5d8e3a0ecce5f71439
[lhc/web/wiklou.git] / resources / mediawiki.special / mediawiki.special.search.js
1 /*
2 * JavaScript for Specical:Search
3 */
4
5 // Emulate HTML5 autofocus behavior in non HTML5 compliant browsers
6 if ( !( 'autofocus' in document.createElement( 'input' ) ) ) {
7 $( 'input[autofocus]' ).focus();
8 }