kollapsminoriteten/wp-content/plugins/jetpack/modules/theme-tools/js/suggest.js

8 lines
210 B
JavaScript
Raw Normal View History

2019-11-15 23:26:29 +01:00
/* global ajaxurl:true */
2020-09-15 14:30:05 +02:00
jQuery( function ( $ ) {
2019-11-15 23:26:29 +01:00
$( '#customize-control-featured-content-tag-name input' ).suggest(
ajaxurl + '?action=ajax-tag-search&tax=post_tag',
{ delay: 500, minchars: 2 }
);
} );