Hola, Ivv hizo un sitio web y mi secuencia de comandos js y todo funciona bien en el servidor vs code live Ver que funciona bien aquí
Luego, cuando lo hospedo en Xamp it dosifique Esto aquí es otros errores y código
/*Js Code*/ function discord() { /* Get the text field */ var copyText = document.getElementById("discordid") /* Copy the text inside the text field */ navigator.clipboard.writeText("Skippy#3196"); copyText.value = "Skippy#3196"; /* Alert the copied text */ alert("Copied Alan's Disocrd: " + copyText.value); } function gmail() { /* Get the text field */ var copyText = document.getElementById("Gmailid") /* Copy the text inside the text field */ navigator.clipboard.writeText("bosslyter@gmail.com"); (copyText.value) = "bosslyter@gmail.com"; /* Alert the copied text */ alert("Copied Alan's Email: " + copyText.value); } /*html*/ <div class="third-header"> <p class="Contact">Contact Information</p> <img class="Discord" src="/Photos/discord.png" onclick="discord()" id="discordid" img> <img class="Gmail" src="/Photos/gmail.png" onclick="gmail()" id="Gmailid" img>