<input type="text" name="search" value="" placeholder="Поиск"
class="inp_sear form-control input-lg" minlength="1" livesearch="off">
$(this).on('input', function(event) {
if (event.keyCode == 27) {
this.hide();
} else if (this.value.length <= this.minLength) {
this.hide();
} else {
this.request();
}
});