Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Halling
  • Content: Threads
  • Order by date
  1. Halling

    How to detect (only) Netscape 6.01

    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...
  2. Halling

    Tracking banners

    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...
  3. Halling

    Advanced web statistics

    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...
  4. Halling

    Open in mainframe.

    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...

Part and Inventory Search

Back
Top