Possible Duplicate:
How to select all text in a textbox and copy it to clipboard using JavaScript/jQuery?
Copy text to the client’s clipboard using jQuery
I need a javascript, jquery function for copy to clipboard functionality. I know following code but it works in IE only:
holdtext.innerText = copytext.innerText;
Copied = holdtext.createTextRange();
Copied.execCommand("Copy");
I see some tutorials which are suggestion some swf files. I have used some of them like http://www.steamdev.com/zclip/ but it is not working.
Please suggest solution to it.