var bfsAjax; var bfsTimeout; $(function () { $("#search-input").keyup(function () { var search = $(this); $(this).parent().find(".list-group").remove(); if (typeof bfsTimeout != 'undefined') { clearTimeout(bfsTimeout); } if (typeof bfsAjax != 'undefined' && bfsAjax.readyState != 4) { bfsAjax.abort(); } bfsTimeout = setTimeout(function (object) { bfsAjax = $.ajax("/api/GetSearchResult/?query=" + $("#search-input").val()).done(function (data) { var template = $.templates("#result-template"); var content = $("
"); var item = template.render(data); content.append(item); search.after(content); }); }, 200); }); });