From f41c7b15891eef836b283f8460ce6a1b84b1b53b Mon Sep 17 00:00:00 2001 From: SergejJahne Date: Thu, 18 Apr 2024 16:47:42 +0200 Subject: [PATCH] Javascript kommentare --- Javascript/app.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Javascript/app.js b/Javascript/app.js index b9507f3..a2857f6 100644 --- a/Javascript/app.js +++ b/Javascript/app.js @@ -26,13 +26,14 @@ document.addEventListener("DOMContentLoaded", function() { }); // Für Patenshop document.getElementById('donationForm').addEventListener('submit', function(event) { - event.preventDefault(); // Verhindert die tatsächliche Formularübermittlung + event.preventDefault(); alert('Alles in Ordnung. Vielen Dank für Ihre Spende!'); - this.reset(); // Setzt das Formular zurück + this.reset(); }); + // Für Preis document.addEventListener('DOMContentLoaded', function() { - updatePrice(); // Initialer Preis wird beim Laden der Seite gesetzt + updatePrice(); }); function updatePrice() { @@ -43,7 +44,7 @@ function updatePrice() { const pricePerUnit = selectedFood.getAttribute('data-price'); const quantity = mengeSelect.value; const total = pricePerUnit * quantity; - priceInput.value = total.toFixed(2); // Preis wird im Preisfeld angezeigt + priceInput.value = total.toFixed(2); } function showDonationAmount() {