$(document).ready(function(){$(".buyProduct").each(function(){var buyElement=$(this);$("input:submit, input:image",buyElement).click(function(event){event.preventDefault();var idCN=$("input[name='id_categoryNode']",buyElement).val();var quantity=$("input[name='quantity']",buyElement).val();var variationValue=$("select[name='id_variationValue']",buyElement).val();$.ajax({type:"GET",cache:false,url:"/call.php?class=ShopFrontAction&method=addToCart&id_categoryNode="+idCN+"&quantity="+quantity+"&id_variationValue"+variationValue,success:function(result){if(result==1){if(typeof ajRefreshMessageBox=='function'){ajRefreshMessageBox()}if(typeof ajRefreshCartInfo=='function'){ajRefreshCartInfo()}}}})})})});