${highlightText(cleanTitle, query)}
${highlightText(snippet, query)}
`;
});
$results.html(html);
} else {
$results.html(`No search results for '${query}'
`);
}
},
error: function() {
$loader.hide();
$icon.show();
}
});
}, 400);
});
// Clear input when "X" is clicked
$close.on('click', function(e) {
e.stopPropagation();
$input.val('').focus();
$input.closest('.search-input-wrapper').removeClass('has-text');
$('#closeSearch').hide();
$results.html('Start typing to search...