• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

copy to clipboard

themoose

Sup, Recoil here.
NLC
is there a way to copy <textarea> to clipboard in Firefox and IE? I know there is for IE, but what about firefox?
Thanks,
themoose

P.S. php or js plz
 
I have not tested this, so I can't guarantee it will work, but here is some code I found:

Code:
<script type="text/javascript">

function CopyToClipboard()

{
   document.Form1.txtArea.focus();

   document.Form1.txtArea.select(); 
   CopiedTxt = document.selection.createRange();

   CopiedTxt.execCommand("Copy");

}

</script>

HTML:
<form name="Form1">

Here is some text you can copy. You can copy text from anywhere on the page, simply select it and press the Copy to clipboard button. Then you can paste it anywhere you want, in Notepad, Visual Studio or in the textarea below.

<br /><br />

<textarea id="txtArea" cols="60" rows="5">You can also copy text from this textarea. Or you can paste the text here, using the Ctrl+V key combination.</textarea>

<br />

<input type="button" onClick="CopyToClipboard()" value="Copy to clipboard" />

</form>
 
Back
Top