Hi all, I want to copy string into clipboard on a function call or page load. Please see below code <html> <body> <script type="text/javascript" src="ZeroClipboard.js"></script> <div id="d_clip_button" style="border:1px solid black; padding:20px;">Copy To Clipboard</div> <script language="JavaScript"> var clip = new ZeroClipboard.Client(); var myTextToCopy = "Hi, this is the text to copy!"; clip.setText( myTextToCopy ); clip.glue( 'd_clip_button' ); </script> </body> </html> Copy text on button click is working fine. But i dont have any button in my project .I want to copy text inside a JS function. Please help me. Thanks in advance Manu v nath
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)