Sign up to create your own snipts, or login.

Public snipts » robin's snipts » clipboard The latest clipboard snipts from robin.

showing 1-1 of 1 snipts for clipboard
  • copy to clipboard
    function copyToClipBoard(id)
    {
        document.getElementById('holdtext').innerText = document.getElementById(id).innerText;
        Copied = document.getElementById('holdtext').createTextRange();
        Copied.execCommand("Copy");
    }
    

    copy | embed

    0 comments - tagged in  posted by robin on Feb 19, 2009 at 5:31 a.m. EST
Sign up to create your own snipts, or login.