Current Path : /home/bitrix/ext_www/coffe.land/local/templates/Nespresso/ |
Current File : /home/bitrix/ext_www/coffe.land/local/templates/Nespresso/template_js2.js |
$( document ).ready(function() { $(document).delegate('.addCart','click',function(e){ var productid = $(this).attr("productcode"); var disabled = $(this).attr("disabled"); if(disabled==="true"){ console.log("disabled"); }else { console.log("buy script: buy"); console.log("Product id: "+productid); $.get( "/ajax/basket.php?id="+productid+"&count=1", function( data ) { reloadnMiniCart(); }); } }) });