$('#popup-search-input').on('keypress', function (e) {
if (e.which === 13) {
$('.search-results').html('searching');
$.get('/api/entity-product-search/' + $(this).val(), function (data) {
$('.search-results').html(data);
});
}
});
$('#popup-search-input').on('keypress', function (e) {
if (e.which === 13) {
$('.search-results').html('<div class="loading"></div>');
$.get('/api/entity-product-search/' + $(this).val(), function (data) {
$('.loading').remove(); //Можно и не удалять, т.к функция ниже и так очистит контейнер
$('.search-results').html(data);
});
}
});
.loading {
background: url('/images/loading.gif');
width: 40px;
height: 40px;
}