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