Skip to content

Instantly share code, notes, and snippets.

@devheedoo
Created December 1, 2016 07:08
Show Gist options
  • Save devheedoo/1278964782f03be7e945fd1b6d4bb4a0 to your computer and use it in GitHub Desktop.
Save devheedoo/1278964782f03be7e945fd1b6d4bb4a0 to your computer and use it in GitHub Desktop.
Hide html on status bar
<!DOCTYPE html>
<html>
<head>
<title>hideHref</title>
</head>
<body>
<a href="javascript:;" onclick="javascript:linkFunc('http://www.google.com');">www.hiddenHref.com</a>
<script>
function linkFunc(link) {
window.open(link, '_self');
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment