Javascript: I found this small bit of code, does it copy text to the clipboard? -


i found in js source here: http://www.clae.com/jscripts/common.js

i don't know does, copy text clipboard? thought impossible js copy text clipboard?

// copies passed text clipboard     function copytoclipboard(text) {         var range = document.body.createtextrange();         range.findtext(text);         range.select();         document.execcommand("copy");         document.execcommand("unselect");     } 

it's not cross-browser. check out: http://www.quirksmode.org/dom/execcommand.html


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -