| FREE TOOLS |
JavaScript Browser ID
| In
the <body> tag of your HTML document, place the following script to identify
which browser is a user has. |
<script
language="JavaScript" type="text/javascript">
<!--
document.write("You
are using "
+ navigator.appName
+
" "
+ navigator.appVersion);
// -->
</script> |
| |
See it in Action:
|
JavaScript Document Location
| In
the <body> tag of your HTML document, place the following script to identify
which page the user is on. |
<script language="JavaScript" type="text/javascript">
<!--
document.write("This
web page is located @ "
+ document.location);
// -->
</script> |
| |
See it in Action:
|
|