Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
function addToCartMobileClick() {
if (!/product/.test(window.location.href)){
return;
}
var btn = document.querySelector(`#mst-stiky-box button`);
btn.addEventListener('click', function(){
var atc = document.querySelector(`.grid__item.row_grid_qnt button`);
atc.click();
});
}
addToCartMobileClick()