copying text to clipboard
Is there a way that javascript can copy text to the clipboard? and also is there a way to select all the text in a textbox (to copy it to the clipboard).
thanks,
Brandon
Is there a way that javascript can copy text to the clipboard? and also is there a way to select all the text in a textbox (to copy it to the clipboard).
thanks,
Brandon
Anonymous posted this at 13:05 — 5th December 1999.
They have: 5,633 posts
Joined: Jan 1970
I don't know if you can copy text to the clipboard but you can highlight all text within a textbox or textarea. This effect can be seen at www.dynamicdrive.com .
document.FORM_NAME.TEXTAREA_NAME.focus();
document.FORM_NAME.TEXTAREA_NAME.select();
------------------
http://go.to/hass
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.