Created
October 25, 2017 14:49
-
-
Save prabhatkashyap/0a56c4c376ae264ecd1508724fc55041 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <div id="link">http://pkashyap28.wordpress.com | |
| </div> | |
| <a href="javascript:void (0)" id="copy-btn">Copy To Clipboard</a> | |
| <script type="text/javascript" src="jquery-1.9.0.min.js"></script> | |
| <script type="text/javascript" src="jquery.zclip.js"></script> | |
| <script type="text/javascript"> | |
| $(document).ready(function () { | |
| $("#copy-btn").zclip({ | |
| path: "ZeroClipboard.swf", | |
| copy: function () { | |
| return $('#link').html(); | |
| }, | |
| beforeCopy: function () { | |
| }, | |
| afterCopy: function () { | |
| } | |
| }); | |
| }); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment