Click to See Complete Forum and Search --> : copying content of a textare with a button


lukezweb
11-09-2003, 10:43 AM
<textarea name="message" rows="12" cols="60" wrap="soft" ONCLICK="javascript:storeCaret(this);" ONKEYUP="javascript:storeCaret(this);" ONCHANGE="javascript:storeCaret(this);" tabindex="3"></textarea>

that is the textarea code how do i make this image:

a button that will copy of the contents of the textarea to your clipboard on their PC

lukezweb
11-09-2003, 10:45 AM
wait i got it:

onClick="javascript:this.form.message.focus();this.form.message.select();"


anyway thanks to anyone who read this ;)