2010-10-06 20:42:08 +00:00
|
|
|
/*
|
|
|
|
|
* JavaScript for Specical:Search
|
|
|
|
|
*/
|
2011-02-19 23:52:11 +00:00
|
|
|
( function( $ ) {
|
2010-10-06 20:42:08 +00:00
|
|
|
|
|
|
|
|
// Emulate HTML5 autofocus behavior in non HTML5 compliant browsers
|
|
|
|
|
if ( !( 'autofocus' in document.createElement( 'input' ) ) ) {
|
2011-01-31 19:33:16 +00:00
|
|
|
$( 'input[autofocus]:first' ).focus();
|
2010-10-06 20:42:08 +00:00
|
|
|
}
|
2011-01-31 19:33:16 +00:00
|
|
|
|
2011-02-19 23:52:11 +00:00
|
|
|
} )( jQuery );
|