<script>
function kopyala() {
var copy = document.getElementById("id"); // İnput id sini değiştirmeye unutma
copy.select();
document.execCommand("copy");
alert("Kopyalandı " + copy.value);
}
</script>
Konu: sabit linki kopyalama
<script>
function kopyala() {
var copy = document.getElementById("id"); // İnput id sini değiştirmeye unutma
copy.select();
document.execCommand("copy");
alert("Kopyalandı " + copy.value);
}
</script>