Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created October 25, 2014 07:49
Show Gist options
  • Save oguzhanaslan/213f0943f2d81003c513 to your computer and use it in GitHub Desktop.
Save oguzhanaslan/213f0943f2d81003c513 to your computer and use it in GitHub Desktop.
Copy Your URL To Visitors Clipboard Only IE
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