Click here to Skip to main content
15,884,353 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi all,
I want a sample jquery implementation to copy text to client clipboard. I know there are many jquery implementation avilable. But i need one working sample code. I am not familiar with jquery coding. Please help me

Thanks in advance,
Manu V Nath
Posted
Updated 1-Jul-13 3:15am
v2

Hello Manu,

You can use liveclipboard-jquery[^] plugin to do this. The working sample can be found here[^]. Another JQuery plugin to do similar thing is zClip[^].

Regards,
 
Share this answer
 
XML
<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>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900