Files
lpmj6/14/linktest.html
T
RobinNixon 188af22a54 Final
2021-04-18 15:31:38 +01:00

13 lines
233 B
HTML

<html>
<head>
<title>Link Test</title>
</head>
<body>
<a id="mylink" href="http://mysite.com">Click me</a><br>
<script>
url = document.links.mylink.href
document.write('The URL is ' + url)
</script>
</body>
</html>