Introduction:
Here are some neat JavaScripts provided by the folks at Javascripts.com. These scripts can be used to determine and display statistics about your visitors.
Output:
Code:
<SCRIPT LANGUAGE="JavaScript">
var where = document.referrer;
var name = navigator.appName;
var vers = navigator.appVersion;
document.write("<FONT FACE=Arial>You came from "+where+"
<BR>Via "+name+" "+vers+" ");
</SCRIPT>
Conclusion:
You can use JavaScript to display your visitor's information. You can
use this information to redirect visitors to other pages, a page that is
explicitly coded for Internet Explorere or Netscape. Happy Programming!




