Merge branch 'main' of https://git.bib.de/PBA3H22AJO/ProbelaufZoo
This commit is contained in:
commit
3fceb2490a
@ -26,13 +26,14 @@ document.addEventListener("DOMContentLoaded", function() {
|
|||||||
});
|
});
|
||||||
// Für Patenshop
|
// Für Patenshop
|
||||||
document.getElementById('donationForm').addEventListener('submit', function(event) {
|
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!');
|
alert('Alles in Ordnung. Vielen Dank für Ihre Spende!');
|
||||||
this.reset(); // Setzt das Formular zurück
|
this.reset();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Für Preis
|
// Für Preis
|
||||||
document.addEventListener('DOMContentLoaded', function() {
|
document.addEventListener('DOMContentLoaded', function() {
|
||||||
updatePrice(); // Initialer Preis wird beim Laden der Seite gesetzt
|
updatePrice();
|
||||||
});
|
});
|
||||||
|
|
||||||
function updatePrice() {
|
function updatePrice() {
|
||||||
@ -43,7 +44,7 @@ function updatePrice() {
|
|||||||
const pricePerUnit = selectedFood.getAttribute('data-price');
|
const pricePerUnit = selectedFood.getAttribute('data-price');
|
||||||
const quantity = mengeSelect.value;
|
const quantity = mengeSelect.value;
|
||||||
const total = pricePerUnit * quantity;
|
const total = pricePerUnit * quantity;
|
||||||
priceInput.value = total.toFixed(2); // Preis wird im Preisfeld angezeigt
|
priceInput.value = total.toFixed(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
function showDonationAmount() {
|
function showDonationAmount() {
|
||||||
|
Loading…
Reference in New Issue
Block a user