WebSiteMadeEasy.net
|
FontsMadeEasy.com
|
RankChecker.net
Google Search:
Learn Java Script Today
|
Over 5000 Free Fonts
|
Tutorials
|
Javascript Forum
|
Other Javascript Resources
|
Cheat Sheet
JavaScript Basics
Inserting Javascript
Complete Tutorial
Advance DHTML Tutorial
Script archive
Advance Tutorials
Alert Scripts
Animation
Audio
Background Effects
Banner Ads
Browser Window
Buttons
Button Forms
Calculcators
Calendars
Clocks & Dates
Cookies
Cursor Effects
DHMTL Games
DHTML Miscellaneous
Equivalents
Forms
Games
IE4+ Scripts
IE5+ Scripts
Image Effects
Image Miscellaneous
Links & Buttons
Math Related
Messages Miscellaneous
Miscellaneous
Mouse Tricks
Navigation
Page Details
Password Protection
Pulldown Menus
Random Stuff
Scrolling
Status Bar
Text Animation
User Detail
User Info
Window Control
Browser/System Descrimination - Page Entry
If you are running windows 98 it will send you back to the main index. If not if will do nothing. Read the bottom to see how to use this script when page loads. The use with the button is just for the example!
Insert into <HEAD>
<SCRIPT Language="JavaScript"> function test(){ if(navigator.appVersion.indexOf("98") != -1){ location="index.htm";}} </script> <!--System Types: Windows 3.11 = Win16 Windows 95 = Win95 Windows 95 = Win98 Windows NT = WinNT Mac = Macintosh Browser Types: Netscape = Netscape Internet Explorer = Microsoft Internet Explorer -->
Insert into <BODY>
<input type=button value="Run System Test" onClick="test()"></form>
Other Options
To use this when your page load (in other words, it will autoamtically kick out certain users) put this script in your head tag. Just change the BROWSER TYPE and the PAGE LOCATION <SCRIPT Language="JavaScript"> if(navigator.appVersion.indexOf("BROWSER TYPE") != -1){ location="PAGE LOCATION";} </script> System Types: Windows 3.11 = Win16 Windows 95 = Win95 Windows NT = WinNT Mac = Macintosh Browser Types: Netscape = Netscape Internet Explorer = Microsoft Internet Explorer