$(function() { $('.button_acquista').click(function() { fLoading( 1 ); var strID_Prodotto = $(this).attr('name') != undefined ? $(this).attr('name') : ''; var strPromo = $(this).data('promo') != undefined ? $(this).data('promo') : ''; if ( strID_Prodotto != '' ) { var strID_Taglia = $(".size-item.active .taglia").data('taglia'); var strID_Colore = $(".colore.active").data('colore'); var intQuantita = 1; //$("#fp_quantita").val() $.ajax({ type: "POST", async: false, dataType: "json", url: "/tpl/2019/assets/ajax/setCarrello.php", data: "action=setCarrello&pstrID_Prodotto=" + strID_Prodotto + "&pintQuantita=" + intQuantita + "&pstrCarrelloTipo=" + $("#fp_carrello_tipo").val() + "&pstrLangCurrent=" + $("#fp_lang_current").val() + ( strPromo != "" ? "&pstrPromo=" + strPromo : "" ) + ( strID_Taglia != undefined && strID_Taglia != "" ? "&pstrID_Taglia=" + strID_Taglia : "" ) + ( strID_Colore != undefined && strID_Colore != "" ? "&pstrID_Colore=" + strID_Colore : "" ), success: function(data) { if ( data.status == 'ok' ) { location.href = $('#fp_carrello_url').val(); } else { swal("Oops...", "Procedura non completata.", "error"); } }, error: function(data) { swal("Oops...", "Procedura non completata.", "error"); } }); /* ajax */ } }); });