leecsone
07-22-2004, 09:04 PM
Hi all
I am working with a shopping cart. Now on the order form their are two texfield that has the price and the quinty. Can you help me add a button or a text that will Subtract The Item From My Total. Here is the script below.
if (parent.item_num > 0)
{
for (i =1;i < parent.item_num;i++)
{ if (parent.itemlist[i].quan > 0)
{index = index + 1;2;
document.write('<a href='+ parent.itemlist[i].url + '><i><b> review : </b></i></a> Price <input size=6 type=text name= ' + parent.itemlist[i].code + ' value=' + parent.itemlist[i].price + '> Quinty <input size=2 type=text name= ' + parent.itemlist[i].desc + ' value= '+ parent.itemlist[i].quan + '> <br>');
}
}
}
Thank You
leecsone
northrock.bm
I am working with a shopping cart. Now on the order form their are two texfield that has the price and the quinty. Can you help me add a button or a text that will Subtract The Item From My Total. Here is the script below.
if (parent.item_num > 0)
{
for (i =1;i < parent.item_num;i++)
{ if (parent.itemlist[i].quan > 0)
{index = index + 1;2;
document.write('<a href='+ parent.itemlist[i].url + '><i><b> review : </b></i></a> Price <input size=6 type=text name= ' + parent.itemlist[i].code + ' value=' + parent.itemlist[i].price + '> Quinty <input size=2 type=text name= ' + parent.itemlist[i].desc + ' value= '+ parent.itemlist[i].quan + '> <br>');
}
}
}
Thank You
leecsone
northrock.bm