This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const form = document.getElementById("formProds"); | |
const sectionProd = document.getElementById("section__productos"); | |
function main() { | |
form.addEventListener("submit", (e) => { | |
e.preventDefault(); | |
// VALUES | |
const product = e.target.prod.value; | |
const quantity = e.target.cant.value; |