Hello Ivv Made A website and my js script and everything works fine in vs code live server See it works fine here
Then when I host it On xamp it dose This here is others errors and code
/*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>