Created
October 25, 2014 07:49
-
-
Save oguzhanaslan/213f0943f2d81003c513 to your computer and use it in GitHub Desktop.
Copy Your URL To Visitors Clipboard Only IE
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
function copyUrlToClipboard(){ | |
var url = location.href; | |
window.clipboardData.setData('url',url); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment