var sync1 = $("#sync1");
var sync2 = $("#sync2");
console.log(sync1);
console.log(sync2);
...
$('.goods-out').html(out);
...(вызов функции инициализации owl)
$(document).ready(function() {
function checkWidth() {
var windowWidth = $('body').innerWidth(),
elem = $(".number-bullets"); // лучше сохранять объект в переменную, многократно чтобы не насиловать
// страницу для поиска нужного элемента
if(windowWidth < 480){
elem.removeClass('col-xs-12');
elem.addClass('col-xs-4');
}
else{
elem.removeClass('col-xs-4');
elem.addClass('col-xs-12');
}
}
checkWidth(); // проверит при загрузке страницы
$(window).resize(function(){
checkWidth(); // проверит при изменении размера окна клиента
});
});
$(window).scroll(function() {
var the_top = $(document).scrollTop();
if (the_top > $('.container-fluid.header-top').height()) {
$('.header-down').addClass('navbar-fixed-top');
$('header').css({'margin-top':parseInt($('.header-down').height())+20+'px'});
}
else {
$('.header-down').removeClass('navbar-fixed-top');
$('header').css({'margin-top':0});
}
})
function minusGoods(){
// ......
showCart();
}
function showCart(data) {
var pack = JSON.parse(data);
JSON.parse(undefined)