Skip to content

Instantly share code, notes, and snippets.

@damiann
Last active October 12, 2015 05:28
Show Gist options
  • Save damiann/3978143 to your computer and use it in GitHub Desktop.
Save damiann/3978143 to your computer and use it in GitHub Desktop.
Hide a link
<!doctype html>
<head>
<script>
function clicked() {
document.getElementById("link").href="http://www.nik-it.com/wp-content/uploads/2012/01/Youve_Been_Hacked-300x170.jpg";
}
</script>
</head>
<body>
<strong>Click the link</strong><br />
<a href="http://www.bankofamerica.com"onclick="clicked()"id="link">Bank of America</a>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment