Login or Sign up Help | Site Map
Connecting Tech Pros Worldwide
View Single Post
McKirahan's Avatar
McKirahan
Guest
n/a Posts
March 13th, 2006
12:05 PM
#2

Re: Copy to clipboard
"Gernot Frisch" <Me@Privacy.net> wrote in message
news:47l12vFfojo1U1@individual.net...[color=blue]
> How can I put text from a <textarea name="test"></textarea> into my
> clipboard (Windows, Firefox+IE).[/color]

Will this help -- for IE anyway?

<html>
<head>
<title>clipboard.htm</title>
<script type="text/javascript">
function copy(what) {
window.clipboardData.setData('Text',what.value);
}
function paste(what) {
what.value = window.clipboardData.getData('Text');
}
</script>
</head>
<body>
<form>
<textarea name="data" cols="50" rows="10"></textarea>
<br>
<input type="button" value="Copy" onclick="copy(this.form.data)">
<input type="button" value="Paste" onclick="paste(this.form.data)">
<input type="reset" value="Clear">
</form>
</body>
</html>