$(function() { $('.button_acquista').click(function() { fLoading( 1 ); var strID_Prodotto = $(this).attr('name'); if ( strID_Prodotto != '' ) { var strID_Taglia = $(".size-item.active .taglia").data('taglia'); var strID_Colore = $(".colore.active").data('colore'); $.ajax({ type: "POST", async: false, dataType: "json", url: "/tpl/default/assets/ajax/setCarrello.php", data: "action=setCarrello&pstrID_Prodotto=" + strID_Prodotto + "&pintQuantita=" + $("#fp_quantita").val() + "&pstrCarrelloTipo=" + $("#fp_carrello_tipo").val() + "&pstrLangCurrent=" + $("#fp_lang_current").val() + ( 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...", "Procedure uncompleted.", "error"); }, error: function(data) { swal("Oops...", "Procedure uncompleted.", "error"); } }); /* ajax */ } }); });