Skip to content

jeanMachadoNotes/Pizza_Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pizza_Planet_Project

An App for ordering custom pizza's.

It will take in selected options and output a total cost underneath with order summary.

Technologies: HTML, CSS, and JavaScript.

Pizza Planet Menu

This was accomplished via Loops, Classes, and Array's. It tallied up choices made and associated values into an Array,

 for (var i = 0; i < sizeArray.length; i++) {
        if (sizeArray[i].checked) {
            var selectedSize = sizeArray[i].value; //Would grab checked items, value i.e. 'Medium Pizza'
            text1 = text1 + selectedSize + "<br>";
        }
    }

and Outputed end result into a hidden 'cart' that appeared when Order button was clicked.

menu-2

About

An App for ordering custom pizza's

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published