- Choosing a selection results in a full page refresh.
- Press the space key then arrow keys to make a selection.
- Use left/right arrows to navigate the slideshow or swipe left/right if using a mobile device
document.addEventListener("DOMContentLoaded", function() {
var a = document.querySelector(`.grid__item > #AddToCart.dynamic_paybtn`);
var fakeATC = document.querySelector(`#mst-stiky-box button`);
if (!fakeATC || !a)return;
fakeATC.addEventListener('click', function(){
a.click();
});
});