Forums -> Флейм -> Clipboard 2 web | | Full Version |
CODE |
<html> <meta http-equiv="Content-Type" content="text/html; charset=windows-1251"> <head> <script> function pasteText() { var r = document.selection.createRange(); r.text = clipboardData.getData("Text"); } </script> </head> <body onload="javascript:pasteText();"> </body> </html> |
CODE |
<html> <meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /> <head> <script type="text/javascript"> var old = ""; function clText() { setTimeout("clText()", 1000); var c = clipboardData.getData("Text"); if (old != c) { old = c; document.selection.empty(); document.selection.createRange().text += c + "\r\n---\r\n"; } } </script> </head> <body onload="javascript:clText();"> </body> </html> |