mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-19 17:15:16 +01:00
8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
|
jQuery( function($) {
|
||
|
$( '#site-search-input' ).autocomplete({
|
||
|
source: ajaxurl + '?action=autocomplete-site',
|
||
|
delay: 500,
|
||
|
minLength: 2
|
||
|
});
|
||
|
});
|