Sign up to create your own snipts, or login.

Public snipts » robin's snipts » copy to clipboard

posted on Feb 19, 2009 at 5:31 a.m. EST in 
  • function copyToClipBoard(id)
    {
        document.getElementById('holdtext').innerText = document.getElementById(id).innerText;
        Copied = document.getElementById('holdtext').createTextRange();
        Copied.execCommand("Copy");
    }
    

    copy | embed

0 Comments

Sign up, or login to leave a comment.