19 lines
444 B
HTML
19 lines
444 B
HTML
|
<!DOCTYPE html>
|
||
|
|
||
|
<!-- target: hello.txt -->
|
||
|
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>Javascript link</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<button id="link">Follow me via JS!</button>
|
||
|
<script type="text/javascript">
|
||
|
document.getElementById('link').addEventListener('click', function() {
|
||
|
window.location.href = '/data/hello.txt';
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|