|
↑
User Details >>>
More information about the web browser than you knew existed! Find out the code name, color depth, platform, if java is enabled, resolution, ip address, hostname, and more!
Add the below code to the <body> section of your page:
<script
language="javascript"
type="text/javascript">
function
display()
{
window.onerror=null;
colors
=
window.screen.colorDepth;
document.form.color.value
=
Math.pow
(2,
colors);
if
(window.screen.fontSmoothingEnabled
==
true)
document.form.fonts.value
=
"Yes";
else
document.form.fonts.value
=
"No";
document.form.navigator.value
=
navigator.appName;
document.form.version.value
=
navigator.appVersion;
document.form.colordepth.value
=
window.screen.colorDepth;
document.form.width.value
=
window.screen.width;
document.form.height.value
=
window.screen.height;
document.form.maxwidth.value
=
window.screen.availWidth;
document.form.maxheight.value
=
window.screen.availHeight;
document.form.codename.value
=
navigator.appCodeName;
document.form.platform.value
=
navigator.platform;
if
(navigator.javaEnabled()
<
1)
document.form.java.value="No";
if
(navigator.javaEnabled()
==
1)
document.form.java.value="Yes";
if(navigator.javaEnabled()
&&
(navigator.appName
!=
"Microsoft Internet Explorer"))
{
vartool=java.awt.Toolkit.getDefaultToolkit();
addr=java.net.InetAddress.getLocalHost();
host=addr.getHostName();
ip=addr.getHostAddress();
alert("Your
host name is '"
+
host
+
"'\nYour IP address is "
+
ip);
}
}
window.onload=display;
</script>
<center>
<form
name=form>
<table
border=1
width=300>
<tr>
<td>current resolution:</td>
<td
align=center><input
type=text
size=4
maxlength=4
name=width>
x <input
type=text
size=4
maxlength=4
name=height></td>
</tr>
<tr>
<td>
browser:</td>
<td
align=center><input
type=text
size=20
maxlength=20
name=navigator></td>
</tr>
<tr>
<td>
max resolution:</td>
<td
align=center><input
type=text
size=4
maxlength=4
name=maxwidth>
x <input
type=text
size=4
maxlength=4
name=maxheight></td>
</tr>
<tr>
<td>
version:</td>
<td
align=center><input
type=text
size=20
maxlength=20
name=version></td>
</tr>
<tr>
<td>
color depth:</td>
<td
align=center><input
type=text
size=2
maxlength=2
name=colordepth>
bit</td>
</tr>
<tr>
<td>
code name:</td>
<td
align=center><input
type=text
size=15
maxlength=15
name=codename></td>
</tr>
<tr>
<td>
platform:</td>
<td
align=center><input
type=text
size=15
maxlength=15
name=platform></td>
</tr>
<tr>
<td>
colors:</td>
<td
align=center><input
type=text
size=8
maxlength=8
name=color></td>
</tr>
<tr>
<td>
java enabled:</td>
<td
align=center><input
type=text
size=3
maxlength=3
name=java></td>
</tr>
<tr>
<td>
anti-aliasing fonts:</td>
<td
align=center><input
type=text
size=3
maxlength=3
name=fonts></td>
</tr>
<tr>
<td
colspan=2
align=center>
<input
type=button
name=again
value="again?"
onclick="display()"></td>
</tr>
</table>
</form>
</center>
|
↓
|