1
Fork 0
mirror of https://github.com/Steffo99/referer.steffo.eu.git synced 2024-10-16 09:47:25 +00:00
referer/templates/locationhref.html
2019-08-05 11:56:14 +02:00

15 lines
No EOL
283 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>location.href</title>
<script>
function move() {
location.href = "/referer"
}
</script>
</head>
<body>
<button onclick="move()">Click on me!</button>
</body>
</html>