html
html
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<!-- https://www.sololearn.com/Discuss/1430087/change-url-link-fake-url -->
<head>
<title>Page Title</title>
</head>
<body>
<a id="someLink" href="https://www.google.com">I'm a google, trust me</a>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
4
5
6
window.onload = function() {
var link = document.getElementById("someLink");
link.addEventListener('click', function (event) {
link.href = "https://www.sololearn.com";
});
}
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run