diff --git a/src/wp-content/themes/twentyfourteen/js/featured-content-admin.js b/src/wp-content/themes/twentyfourteen/js/featured-content-admin.js index 74e0e2f0e9..fc758bf1d0 100644 --- a/src/wp-content/themes/twentyfourteen/js/featured-content-admin.js +++ b/src/wp-content/themes/twentyfourteen/js/featured-content-admin.js @@ -4,5 +4,7 @@ */ /* global ajaxurl:true */ ( function( $ ) { - $( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } ); + $( document ).ready( function() { + $( '#customize-control-featured-content-tag-name input' ).suggest( ajaxurl + '?action=ajax-tag-search&tax=post_tag', { delay: 500, minchars: 2 } ); + }); } )( jQuery );