View Full Version : on select text -> copy text to clipboard
Jefis
08-13-2005, 11:57 PM
how can i make, if user selects text, javascript automatically copy it to clipboard :)
jscheuer1
08-14-2005, 04:27 AM
For IE only:
<script type="text/javascript">
document.onselectionchange=function(){document.execCommand("Copy")}
</script>
brothercake
08-15-2005, 07:55 PM
Still a bit rude though - what if I had data in the clipboard that I wanted there? You should at least warn users that this will happen.
vBulletin® v3.8.2, Copyright ©2000-2012, Jelsoft Enterprises Ltd.