-
-
Testosterone Enanthate 400mg/ml ZPHC
Testosterone Enanthate 400mg/ml ZPHC
Out Of Stock
});
/*
function calcPrice(parentType){
$.ajax({
url: 'index.php?route=product/product/calcPrice',
type: 'post',
data: $(parentType + ' input[type=\'text\'], ' + parentType + ' input[type=\'hidden\'], ' + parentType + ' input[type=\'radio\']:checked, ' + parentType + ' input[type=\'checkbox\']:checked, ' + parentType + ' select'),
dataType: 'json',
beforeSend: function() {
$('.price-val').text('-- --');
},
success: function(json) {
console.log(json);
$(parentType + ' .price-new').text(json.price);
$('#quick_order_price').val(json.price_one);
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
}*/
/*function quickOrder(parentType){
$.ajax({
url: 'index.php?route=mango/quick_order',
type: 'post',
data: $(parentType + ' input[type=\'text\'], ' + parentType + ' input[type=\'hidden\'], ' + parentType + ' input[type=\'radio\']:checked, ' + parentType + ' input[type=\'checkbox\']:checked, ' + parentType + ' select, ' + parentType + ' textarea'),
dataType: 'json',
beforeSend: function() {
$('.btn-quick_order').button('loading');
},
complete: function() {
$('.btn-quick_order').button('reset');
},
success: function(json) {
$('.alert, .text-danger').remove();
$('.form-group').removeClass('has-error');
if (json.error) {
if (json.error.option) {
for (i in json.error.option) {
var element = $('#input-option' + i.replace('_', '-'));
if (element.parent().hasClass('input-group')) {
element.parent().after('' + json.error.option[i] + '
');
} else {
element.after('' + json.error.option[i] + '
');
}
}
}
if (json.error.recurring) {
$('select[name=\'recurring_id\']').after('' + json.error.recurring + '
');
}
// Highlight any found errors
$('.text-danger').parent().addClass('has-error');
}
if (json.success) {
$.magnificPopup.open({
items: {
src: $(json.success),
type: 'inline'
}
});
calcPrice(parentType);
var inputPhone = $('#quick_order').find('#quick_order_telephone');
inputPhone.mask(inputPhone.data('mask'));
}
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
};*/
//-->