mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05: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>
|