# jetpack/7.6.2/modules/theme-tools/js/suggest.js

Jetpack – WP Security, Backup, Speed, &amp; Growth, version 7.6.2. 8 lines.

- Page: https://pluginprobe.com/plugins/jetpack/7.6.2/code/modules/theme-tools/js/suggest.js
- Raw: https://pluginprobe.com/plugins/jetpack/7.6.2/raw/modules/theme-tools/js/suggest.js
- Modified: 2019-04-04T21:15:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/jetpack/7.6.2/code/modules/theme-tools/js/suggest.js#L10-L20`.

```javascript
/* global ajaxurl:true */
jQuery( function( $ ) {
	$( '#customize-control-featured-content-tag-name input' ).suggest(
		ajaxurl + '?action=ajax-tag-search&tax=post_tag',
		{ delay: 500, minchars: 2 }
	);
} );

```
