Dee's reisenthel Favorites

A collection page of Reisenthel

category
Products
4
Active ads
0
Depth
Published
2025/04/28

About

// Prüfen, ob wir uns NICHT bereits auf der niederländischen Version befinden if (!window.location.pathname.startsWith("/nl")) { // Leite auf dieselben Pfade unter /nl weiter const newPath = "/nl" + window.location.pathname + window.location.search + window.location.hash; window.location.href = newPath; } body { font-family: Arial, sans-serif; } .container { display: flex; flex-direction: column; align-items: center; margin-top: 50px; } input[type="text"] { width: 300px; padding: 10px; font-size: 16px; margin-bottom: 20px; box-sizing: border-box; text-align: center; } button { padding: 10px 20px; font-size: 16px; cursor: pointer; border: none; background-color: #4CAF50; color: white; border-radius: 5px; transition: background-color 0.3s ease; } button:hover { background-color: #45a049; } #successMessage { margin-top: 15px; color: green; font-weight: bold; display: none; } Code kopiëren Code gekopieerd! document.getElementById('copyButton').addEventListener('click', function () { var copyText = document.getElementById('codeInput'); copyText.select(); copyText.setSelectionRange(0, 99999); // Für mobile Geräte document.execCommand('copy'); var successMsg = document.getElementById('successMessage'); successMsg.style.display = 'block'; setTimeout(function () { successMsg.style.display = 'none'; }, 2000); // Nachricht nach 2 Sekunden ausblenden });