function copyToClipboard(id) {
const embedCodeTextArea = document.getElementById(id);
embedCodeTextArea.select();
embedCodeTextArea.setSelectionRange(0, 99999); // For mobile devices
// Copy the text inside the text field
document.execCommand('copy');
alert("Embed code copied to clipboard!");
}