// AGGIORNA QUANTITA' function fAggiornaQuantita( pstrKey, pintID_Riga ) { fLoading(1); // Ajax : inizio $.ajax({ type: "POST", async: false, dataType: "json", url: "/tpl/default/ajax/setCarrello.php", data: "action=aggiornaQuantita&pstrKey=" + pstrKey + "&pintID_Riga=" + pintID_Riga + "&pintQuantita=" + $('#quantita_'+pintID_Riga).val(), success: function(data) { if ( data.status == 'ok' ) { location.href = 'https://www.telastampo.com/it/carrello'; } else alert("Impossibile effettuare l'operazione."); }, error: function(data){ alert("errore: " + data); } }); // Ajax : fine } // RIMUOVI PRODOTTO function fDelProd( pstrKey, pintID_Riga ) { fLoading(1); // Ajax : inizio $.ajax({ type: "POST", async: false, dataType: "json", url: "/tpl/default/ajax/setCarrello.php", data: "action=rimuoviProdotto&pstrKey=" + pstrKey + "&pintID_Riga=" + pintID_Riga, success: function(data) { if ( data.status == 'ok' ) { location.href = 'https://www.telastampo.com/it/carrello'; } else alert("Impossibile effettuare l'operazione."); }, error: function(data){ alert("errore: " + data); } }); // Ajax : fine } // SVUOTA CARRELLO function fSvuotaCarrello( pstrKey ) { fLoading(1); // Ajax : inizio $.ajax({ type: "POST", async: false, dataType: "json", url: "/tpl/default/ajax/setCarrello.php", data: "action=svuotaCarrello&pstrKey=" + pstrKey, success: function(data) { if ( data.status == 'ok' ) { location.href = 'https://www.telastampo.com/it/carrello'; } else alert("Impossibile effettuare l'operazione."); }, error: function(data){ alert("errore: " + data); } }); // Ajax : fine }