<script>
document.addEventListener("DOMContentLoaded", function() {
(function () {
const productButton = document.querySelectorAll('a[href^="#prodid-"]');
if(productButton.length){
productButton.forEach(function (el, index) {
el.addEventListener('click',function(e) {
const prodId = this.getAttribute('href').replace(/[^0-9]/g,"");
const orderButton = document.querySelector('div.js-product[data-product-gen-uid="'+prodId+'"]>a');
if(orderButton!=null) orderButton.click();
});
});
};
})();
});
</script>