$(function() { $('.button_acquista').click(function() { fLoading(1); var strID_Prodotto = $(this).attr('name'); if ( strID_Prodotto != '' ) { // Ajax : inizio $.ajax({ type: "POST", async: false, dataType: "json", url: "/tpl/default/ajax/setCarrello.php", data: "action=setCarrello&pstrID_Prodotto=" + strID_Prodotto + "&pintQuantita=" + $("#fp_quantita").val() + "&pstrCarrelloTipo=" + $("#fp_carrello_tipo").val() + "&pstrLangCurrent=" + $("#fp_lang_current").val() + ( $(".chktaglia:checked").val() != undefined && $(".chktaglia:checked").val() != "" ? "&pstrID_Taglia=" + $(".chktaglia:checked").val() : "" ) + ( $(".chkcol:checked").val() != undefined && $(".chkcol:checked").val() != "" ? "&pstrID_Colore=" + $(".chkcol:checked").val() : "" ), success: function(data) { strTmp = data.status; if ( strTmp == 'ok' ) { location.href = $('#fp_carrello_url').val(); } else alert("Inserimento nel carrello non riuscito."); }, error: function(data){ alert("errore: " + data); } }); // Ajax : fine } }); });