var newMenu = $('.my_menu');
$(window).on('scroll resize', function(){
/*....наш код....*/
});
$(window).on('scroll resize', function(){
var isMobile = (window.innerWidth < 920 ? true : false),
top = $(document).scrollTop();
if(isMobile){
if (top > 0) {
!newMenu.hasClass("fixed") && newMenu.addClass("fixed").slideDown("fast");
} else {
newMenu.hasClass("fixed") && newMenu.removeClass("fixed");
}
}else{
newMenu.hasClass("fixed") && newMenu.removeClass("fixed");
}
});
isMobile
и как? current_obj.parent().parent().parent()
closest
https://jquery-docs.ru/closest/var current_obj = $(this),
parent = current_obj.closest('.custom_div'),
name = $('input[name="search_unit"]', parent);
console.log(name);
var current_obj = $(this);
var group_id = current_obj.parent().parent().parent().data('group_id');
$('#new_unit input[name="group_id"]').val('0');
$('#new_unit input[name="unit_id"]').val(0);
$('#new_unit input[name="search_unit"]').val('');
$('#new_unit input[name="group_id"]').val(group_id);
var current_obj = $(this);
var name = $('#new_unit input[name="search_unit"]').val();
var unit_id = $('#new_unit input[name="unit_id"]').val();
var group_id = $('#new_unit input[name="group_id"]').val();
$('.test2').css("top")
каков ответ? И скорее всего auto
Такой функционал имеет Evolution СMS
Для теста ставим https://github.com/evolution-cms/evolution/release...
И дальше наблюдаем.
Понравилось - изучаем плагин updater - https://github.com/evolution-cms/evolution/tree/1....