$("#level").autocomplete({
source:level,
select: function(e, ui){
if(ui.item.label == ""){//Вариант с проверкой метки
};
if(ui.item.value ==""){//Вариант с проверкой добавляемого значения
};
}
});
[{"label": "Уровень 1", "value": "level1"}];
(function($){
$(".content").mCustomScrollbar({
axis:"y",
callbacks:{
whileScrolling: function(){
var x = this.mcs.content.find('.ef');
var d = -this.mcs.top;
x.each(function(i){
console.log(d);
var g = $(this).position().top;
var gh = $(this).height();
console.log(Math.round(gh));
if(d > Math.round(g) - 400) {
$(this).addClass('go');
}
});
}
}
});
})(jQuery);
<!DOCTYPE html>
<html>
<head>
<title>Шаблон</title>
<!--Здесь ваши стили-->
<!--Здесь ваши скрипты-->
</head>
<body>
<!--Здесь ваша стандартная разметка-->
</body>
</html>