Jump to content

text input copy?


ki

Recommended Posts

<html>
<head>
<script type="text/javascript">
function CopyToClipboard()
{
CopiedTxt = document.selection.createRange();
CopiedTxt.execCommand("Copy");
}
</script>
</head>
<body>
<form name="Form1">
<input type=text name="textbox">
<br />
<input type="button" onClick="CopyToClipboard()" value="Copy to clipboard" />
</form>
</body>
</html>

Link to comment
https://forums.phpfreaks.com/topic/38096-text-input-copy/#findComment-182486
Share on other sites

photobucket is a free image host. You can upload images/videos to photobucket.com for free. However it has nothing to do with what you are aksing.

 

But what JP meant to say is thats the javascript photobucket uses to copy text to the clipboard

Link to comment
https://forums.phpfreaks.com/topic/38096-text-input-copy/#findComment-183034
Share on other sites

photobucket is a free image host. You can upload images/videos to photobucket.com for free. However it has nothing to do with what you are aksing.

 

But what JP meant to say is thats the javascript photobucket uses to copy text to the clipboard

Yea I know but ti uses a flash app to do so doesnt it?

Link to comment
https://forums.phpfreaks.com/topic/38096-text-input-copy/#findComment-183290
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.