mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-09 09:20:15 +01:00
18 lines
370 B
HTML
18 lines
370 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
function Load() {
|
||
|
var URL = top.frames[0].document.forms[0].elements[0].value;
|
||
|
|
||
|
top.frames[1].document.location.href = URL;
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<form onsubmit="Load();return false;">
|
||
|
<input type="text" size="50">
|
||
|
<input type="submit" value="Load URL">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|