کپی کردن متن در کلیپ برد در HTML , JS
<!DOCTYPE html>
<html>
<body>
<input type="text" value="practicalsoft.ir" id="Input">
<button onclick="Copy()">Copy text</button>
<script>
function Copy() {
var copyText = document.getElementById("Input");
copyText.select()...