Create a page called products.html, Add 5 products with images to the page (use a Product class with the following attributes: Price, Name, Description and Id for each product). Under each product add an add to cart button and make the id property of the button the id for the product. Add a remove from cart button on each item. Create a separate file called shoppingcart.js and include it in the products page (). Create an empty array to store the items added to the cart. Create a products array and create a product object for each of your products and store it in the products array when the script loads. The script should have the following functions: add - Takes an id, finds the product object in the products array and adds it to the items purchased array (the add to cart button mentioned earlier). remove - Takes an id and removes the corresponding object from the items purchased array(the remove from cart button mentioned earlier). Returns html for displaying the items in the cart. At the top right of the products.html page add a link that says (0) cart. When the add button is pressed, this number should increase. When the remove button is pressed, this number should decrease. When I click on the link, it should take me to a new page called checkout.html. Checkout.html should display all the items in the cart, and a total price. Add a form on the page that takes my name, email, phone number, and a credit card number. Use a regular expression to validate the email, phone number, and credit card.
Create a page called products.html, Add 5 products with images to the page (use a Product class with the following attributes: Price, Name, Description and Id for each product). Under each product add an add to cart button and make the id property of the button the id for the product. Add a remove from cart button on each item.
Create a separate file called shoppingcart.js and include it in the products page (<script src="shoppingcart.js"></script>). Create an empty array to store the items added to the cart. Create a products array and create a product object for each of your products and store it in the products array when the script loads. The script should have the following functions: add - Takes an id, finds the product object in the products array and adds it to the items purchased array (the add to cart button mentioned earlier). remove - Takes an id and removes the corresponding object from the items purchased array(the remove from cart button mentioned earlier). Returns html for displaying the items in the cart.
At the top right of the products.html page add a link that says (0) cart. When the add button is pressed, this number should increase. When the remove button is pressed, this number should decrease. When I click on the link, it should take me to a new page called checkout.html. Checkout.html should display all the items in the cart, and a total price. Add a form on the page that takes my name, email, phone number, and a credit card number. Use a regular expression to validate the email, phone number, and credit card.
Step by step
Solved in 3 steps