CactusMC-site/js/copy.js
2024-12-03 11:08:15 -08:00

9 lines
415 B
JavaScript

var copyButton = document.getElementById("copyButton")
var ipField = document.getElementById("ip")
async function copyToClipboard(){
//ik this function is deprecated, but the main clipboard api doesnt work for me
document.execCommand("copy",false,ipField.value)
//im too lazy to go make a proper hovertext thing, il do it later
alert("Copied!")
}
copyButton.addEventListener("click",copyToClipboard)