Einbettungscode Generator
`;
const outputDiv = document.getElementById('output');
document.getElementById('embedCode').innerText = embedCode.trim();
outputDiv.style.display = 'block';
}
function copyToClipboard() {
const embedCode = document.getElementById('embedCode').innerText;
const textarea = document.createElement('textarea');
textarea.value = embedCode;
document.body.appendChild(textarea);
textarea.select();
document.execCommand('copy');
document.body.removeChild(textarea);
alert('Code kopiert!');
}
Kommentare
Kommentar veröffentlichen