|
|
|
|
![]() ![]() |
Dec 8 2007, 09:54 PM
Post
#1
|
|
|
Member - Active Contributor Group: Members Posts: 92 Joined: 15-December 04 From: New Mexico Member No.: 1,759 |
I know how to code to get the text in a text area highlighted, I was wondering if anyone could provide me with the code to copy the content of a text area directly to the clipboard.
Thanks in advance, Pete |
|
|
|
Dec 9 2007, 03:05 AM
Post
#2
|
|
|
Super Member Group: [HOSTED] Posts: 745 Joined: 8-April 06 From: Lima - Peru Member No.: 12,579 |
A time ago i need a script to do this action, and after some searching i found how to do it. You say that you have the code that selects the content text of the textarea, so, simply add a button to your form which will perform the action of copying it to the clipboard when it is clicked and the following javascript function, you can place this function in an external javascript file or in the HEAD section of your page.
Here is the Javascript code: CODE function copy(text) { if (window.clipboardData) { window.clipboardData.setData("Text",text); } } And the button: CODE <input type="button" value="Copy To Clipboard" onclick="copy(document.your_form_name.your_textarea_name.value);"> I'm not pretty sure but i guess that it only works with Internet Explorer 6, i don't test it with any other browser. Check also this topic One Click To Copy Script, Works in IE6 but not any other Browsers Best regards, This post has been edited by TavoxPeru: Dec 9 2007, 03:43 AM |
|
|
|
Dec 19 2007, 08:13 PM
Post
#3
|
|
|
Member - Active Contributor Group: Members Posts: 92 Joined: 15-December 04 From: New Mexico Member No.: 1,759 |
Thanks man...
sry I didn't thank you sooner but was on vacation pete |
|
|
|
Dec 20 2007, 10:34 AM
Post
#4
|
|
|
Member [ Level 1 ] Group: [HOSTED] Posts: 44 Joined: 26-August 07 Member No.: 24,372 |
|
|
|
|
Dec 20 2007, 12:00 PM
Post
#5
|
|
|
Super Member Group: [HOSTED] Posts: 745 Joined: 8-April 06 From: Lima - Peru Member No.: 12,579 |
|
|
|
|
Dec 20 2007, 12:02 PM
Post
#6
|
|
|
Super Member Group: [HOSTED] Posts: 745 Joined: 8-April 06 From: Lima - Peru Member No.: 12,579 |
|
|
|
|
![]() ![]() |
Similar Topics
| Topics | Topics | |
|---|---|---|
|
|
|
Lo-Fi Version | Time is now: 5th September 2008 - 09:01 AM |