I am currently using the follwing bit of script for showing the card contents:
This works fine except that the value displayed from getCartItem(1) returns a price including VAT. Is there any way of accuratly getting an ex vat total displayed there?
Cheers
Code:
if (getCartItem(3) < 1)
{
document.write("Your cart is empty");
}
else
{
document.write ("NETQUOTEVAR:CARTCOOKIEITEMS " + getCartItem(3)+" <BR>");
document.write("NETQUOTEVAR:CARTCOOKIEVALUE " + getCartItem(1));
}
Cheers
Comment