function addPanier(refgroupee,taille) { if (taille=='') { $( "#dialog-modal" ).dialog({ height: 140, modal: true }); } else { $("#ajoutPanier").html("Product added"); $("#ajoutPanier").css("background-color","#FFFFFF"); $("#ajoutPanier").css("color","#000"); setTimeout('$("#ajoutPanier").html("Add to bag");$("#ajoutPanier").css("background-color","#000");$("#ajoutPanier").css("color","#FFFFFF");',2000); $.ajax({ type: "POST", url: "/en/catalogue_ajaxPanier.html", data: { action:'add', refgroupee:refgroupee, taille:taille }, success: updateDivPanier }); } return false; } function changeQuantity(refunique,plusmoins) { $.ajax({ type: "POST", url: "/en/catalogue_ajaxPanier.html", data: { action:'quantity', refunique:refunique, plusmoins:plusmoins }, success: updatePanier }); } function deletePanier(refunique) { $.ajax({ type: "POST", url: "/en/catalogue_ajaxPanier.html", data: { action:'delete', refunique:refunique }, success: updatePanier }); } function updatePanier(readonly) { $("#big_panier").load("/en/catalogue_ajaxPanier.html",{action:'updatebig',readonly:readonly}); } function updateDivPanier() { $.ajax({type: "POST",url: "/en/catalogue_ajaxPanier.html",data:{action:'visible'},success:function(data) { $("#panier").load("/en/catalogue_ajaxPanier.html",{action:'update'}); } }); } function extendPanier() { if ($("#panier_etendu").css("display")=='none') $("#panier_etendu").show("blind",200); else $("#panier_etendu").hide("blind",200); return false; } function applyPromo(code) { $.ajax({ type: "POST", url: "/en/catalogue_ajaxPanier.html", data: { action:'promo', code:code }, success: updatePanier }); }