I need to detect Netscape 6.01. I have an old script that does the trick:
var app;
var ver;
app = navigator.appName;
ver = navigator.appVersion;
if ( app.indexOf("Netscape") != -1 && ver.indexOf("5.0") != -1 )
The problem that I noticed is that it triggers on my Firefox browser, thinking...
I need a small script to track banners on my page, how many times they are displayed and clicked.
I do not need a complete banner handling system! I already have my own systems for displaying the banners, I only need a small code to put on each banner and then be able to see statistics on each...
I’m looking for a script or service to track visitors on my webpage. Besides all the usual statistics like browser, referrer and so on I would like the functions below. (Even if not –all- of this is fulfilled I’m still interested.)
* Tracking of single pages (unique/total visitors)
* Tracking...
I have a script that prevents individual pages of my webpage to be opened outside my frames. It looks like this:
if (top.frames.length == 0) {top.location.href="/?" + self.location};
One problem with this is that it first loads the frameset with my welcome-page. First when the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.