function pasternak(){
var $peshki = $(".slide.active p");
if ($peshki.length > 0)
{
console.log("I FIND IT");
}
else
{
console.log("TRY AGAIN!");
}
}
var isMobile = {
Android: function() {
return navigator.userAgent.match(/Android/i);
},
BlackBerry: function() {
return navigator.userAgent.match(/BlackBerry/i);
},
iOS: function() {
return navigator.userAgent.match(/iPhone|iPad|iPod/i);
},
Opera: function() {
return navigator.userAgent.match(/Opera Mini/i);
},
Windows: function() {
return navigator.userAgent.match(/IEMobile/i);
},
any: function() {
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
}
};
var sizeEmpty = form.find('.empty_field').size();
var sizeEmpty = form.find('.empty_field').length;
The .size() method is deprecated as of jQuery 1.8. Use the .length property instead.
removed: 3.0
$('html').keydown(function(eventObject){ //отлавливаем нажатие клавиш
if (event.keyCode == 13) { //если нажали Enter, то true
alert("Ура нажали Enter");
}
});
route.getWayPoints().get(1).properties.set({
'balloonContent':'Кастомный текст',
//а здесь в футере оставим информацию о маршруте, например
'balloonContentFooter':route.getHumanLength()+' за '+route.getHumanTime()
});
$('.hover').mouseover(function(){ //Понимаете, что обработчик mousemove стартанет только когда вы наведете на элемент.
var $el = $(this);
$(document).mousemove(function(e){
var X = e.pageX; // положения по оси X
var Y = e.pageY; // положения по оси Y
if(
!(//Уберете эту строчку и закрывающую скобку не забудьте, то условие инвертируется.
Y > $el.offset().top &&
Y < $el.offset().top+$el.height() &&
X > $el.offset().left &&
X < $el.offset().left+$el.width()
)
){
//Код который будет выполнятся, когда курсор вне блока
console.log('Курсор вне блока');
}
});
});
$(this).on('click', function()
это вероятно тот же объект что здесь $('input:text, input:password').on('focus', function() {
$(this).on('click', function() { //убрать
//.......код внутри оставить........
}); //убрать