Latest 100 public snipts »
robin's
snipts » javascript
showing 1-1 of 1 snipts for javascript
-
∞ copy to clipboard
function copyToClipBoard(id) { document.getElementById('holdtext').innerText = document.getElementById(id).innerText; Copied = document.getElementById('holdtext').createTextRange(); Copied.execCommand("Copy"); }


