$('#spterm').keyup(function(){
var d1 = new Date(),
val = $('#spterm').val();
time_keyup = d1.getTime();
console.log(val);
console.log(checkSearch(val));
if(checkSearch(val) != false){
if ($('#spterm').val()!=term){ // проверяем, изменилась ли строка
if ($('#spterm').val().length>=minlen) { // проверяем длину строки
setTimeout(function(){ // ждем следующего нажатия
var d2 = new Date();
time_search = d2.getTime();
if (time_search-time_keyup>=keyint) // проверяем интервал между нажатиями
dosearch(); // если все в порядке, приступаем к поиску
}, keyint);
}else{
$('#spresult').html(' '); // если строка короткая, убираем текст из DIVа с результатом
}
}
}
function checkSearch(term){
var arrStop = ['name'],
check = true;
$.each(arrStop,function(index,value){
if(term == value){
document.getElementById('stop').reset();
//console.log(term+'=='+value);
check = false;
}
});
return check;
}
});
function checkSearch(term){
var arrStop = [],
check = true;
$.each(arrStop,function(index,value){
if(term == value){
document.getElementById('stop').reset();
//console.log(term+'=='+value);
check = false;
}
});
return check;
}
var val = String($('#spterm').val()),
check = '';
console.log(val);
console.log(checkSearch(val));
if(checkSearch(val) != false){
...
}
function checkSearch(term){
var arrStop = ['name1','name2'..];
$.each(arrStop,function(index,value){
if(term == value){
document.getElementById('stop').reset();
//console.log(term+'=='+value);
check = false;
}
});
}