mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
17 lines
387 B
HTML
17 lines
387 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
|
|
<script>
|
|
var text = "appCodeName=" + navigator.appCodeName + "\n";
|
|
text += "appName=" + navigator.appName + "\n";
|
|
text += "appVersion=" + navigator.appVersion + "\n";
|
|
text += "platform=" + navigator.platform + "\n";
|
|
text += "userAgent=" + navigator.userAgent + "\n";
|
|
text += "language=" + navigator.language;
|
|
window.alert(text);
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|