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
Post a Comment