mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
12 lines
410 B
HTML
12 lines
410 B
HTML
<script>
|
|
var text = "location.hash=" + location.hash + "\n";
|
|
text += "location.host=" + location.host + "\n";
|
|
text += "location.hostname=" + location.hostname + "\n";
|
|
text += "location.origin=" + location.origin + "\n";
|
|
text += "location.pathname=" + location.pathname + "\n";
|
|
text += "location.port=" + location.port + "\n";
|
|
text += "location.search=" + location.search + "\n";
|
|
|
|
window.alert(text);
|
|
|
|
</script> |