";
var product_image="new.php.png";
var product_quantity= parseFloat($("#quatity_value").val());
var product_weight= parseFloat($("#cake_weight").val());
var product_price=parseFloat($("#fixed_price").val());
var product_link = $(location).attr("href");
var product_msg=$("#cake_msg").val();
if($("#eggprice").prop("checked") == true){
var product_type=$("#eggprice").val();
}
else {
var product_type="No";
}
$.post("cart_total.php",
{
product_id,product_name,product_image,product_quantity,product_weight,product_msg,product_type,product_link,product_price
},
function(data, status){
$("#cart-datta").html(data);
var total_item= $("#total-item").text();
$("#total-item-count").html(total_item);
});
}
else
{
$('#cake_msg').focus();;
}
});
function submitform(){
$("#review_form").submit(function(e) {
e.preventDefault(); // avoid to execute the actual submit of the form.
var form = $(this);
var url = form.attr('action');
$.ajax({
type: "POST",
url: "review-form.php",
data: form.serialize(), // serializes the form's elements.
success: function(data)
{
//alert(data);
location.href=data;
}
});
});
}
$("#wish_list_item").click(function() {
var product_id="CI4469";
var product_name="";
var product_link =$(location).attr("href");
var custId= ""
var product_price=parseFloat($("#fixed_price").val());
var product_image="new.php.png";
$.post("add-to-wishlist.php",
{
product_id,product_name,product_link,product_image,product_price,custId
},
function(data, status){
$.growl({
title:"Added To Wish List",
message:data
})
$("#wish_list_item").css({"background-color" :"#ff1f54","color": "#f4a137"});
$("#wish_list_item").css("pointer-events", "none");
});
});