Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<script type="text/javascript">

function oncart()
{
var check = false;
var cookievalue = "";

if (document.getElementById("b1").checked) {
check = true;
var quantity = document.getElementById("q1").value;
var price = 399;
var total = (price * quantity);
alert("bag1 " + price + "," + quantity + "," + total);
//cookievalue += "bag1 " + price + "," + quantity + "," + total;
}
if (document.getElementById("b2").checked) {
check = true;
var quantity = document.getElementById("q2").value;
var price = 399;
var total = (price * quantity);
alert("bag2 " + price + "," + quantity + "," + total);
//cookievalue += "bag2 " + price + "," + quantity + "," + total;
}
if (document.getElementById("b3").checked) {
check = true;
var quantity = document.getElementById("q3").value;
var price = 150;
var total = (price * quantity);
alert("lunch1 " + price + "," + quantity + "," + total);
//cookievalue += "lunch1 " + price + "," + quantity + "," + total;
}
if (document.getElementById("b4").checked) {
check = true;
var quantity = document.getElementById("q4").value;
var price = 100;
var total = (price * quantity);
alert("lunch2 " + price + "," + quantity + "," + total);
//cookievalue += "lunch2 " + price + "," + quantity + "," + total;
}
if (document.getElementById("b5").checked) {
check = true;
var quantity = document.getElementById("q5").value;
var price = 100;
var total = (price * quantity);
alert("compass1 " + price + "," + quantity + "," + total);
//cookievalue += "compass1 " + price + "," + quantity + "," + total;
}
if (document.getElementById("b6").checked) {
check = true;
var quantity = document.getElementById("q6").value;
var price = 160;
var total = (price * quantity);
alert("compass2 " + price + "," + quantity+ "," + total);
//cookievalue += "compass2 " + price + "," + quantity + "," + total;
}

if (!check) {
alert("No item selected");
}
}
</script>

You might also like