<button onclick="history.go(-1)">Go Back</button>

This commit is contained in:
fred 2023-02-04 19:22:28 +01:00
parent 569c64be00
commit 9ac4e04cd8
1 changed files with 2 additions and 1 deletions

View File

@ -9,12 +9,13 @@
if (loc) { if (loc) {
var pos=loc.indexOf('link='); var pos=loc.indexOf('link=');
if (pos>0) { if (pos>0) {
document.write('Clic to the link <b>below</b> to go to the online location!<br><a href="'+loc.substring(pos+5)+'">'+loc.substring(pos+5)+'</a><br>'); document.write('Clic to the link <b>below</b> to go to the online location!<br><a target="external" href="'+loc.substring(pos+5)+'">'+loc.substring(pos+5)+'</a><br>');
} else } else
document.write('(no location defined)'); document.write('(no location defined)');
} }
// --> // -->
</script> </script>
<h1><strong><u>External Link !...</u></strong></h1> <h1><strong><u>External Link !...</u></strong></h1>
<button onclick="history.go(-1)">Go Back</button>
</body> </body>
</html> </html>