Skip to content

Instantly share code, notes, and snippets.

@thisbit
Created January 17, 2021 09:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thisbit/0e1ae1bfa1ae1fef163042e7112e8b4a to your computer and use it in GitHub Desktop.
Save thisbit/0e1ae1bfa1ae1fef163042e7112e8b4a to your computer and use it in GitHub Desktop.
copy current url link
<!doctype html>
<html>
<head>
<script>
function Copy() {
var Url = document.getElementById("url");
Url.innerHTML = window.location.href;
console.log(Url.innerHTML)
Url.select();
document.execCommand("copy");
}
</script>
</head>
<body>
<div>
<input type="button" value="Copy Url" onclick="Copy();" />
<br /> Paste: <textarea id="url" rows="1" cols="30"></textarea>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment