We have a set of static HTML pages on which we'd like to display the number of items in the basket as well as total price of items in the basket.
Is this possible? e.g. Server side includes or Javascript?
Will the existing code work:
Thanks in advance!
Is this possible? e.g. Server side includes or Javascript?
Will the existing code work:
Code:
<script language="JavaScript"> document.write("" + getCartItem(1)+" "); document.write("Items " + getCartItem(3)); </script>
Comment