Results 1 to 2 of 2

Thread: HELP!

  1. #1

    Thread Starter
    Addicted Member Xenonic_Rob's Avatar
    Join Date
    Jun 2000
    Location
    England, UK
    Posts
    213
    Please help!
    Can someone please post a javascript that will

    Redirect someone to a different page if they are not using Internet Explorer 4 or above (also if they are using Netscape)

    Also, is it possible to detect whether a user has the VB6 runtime files installed?

    Thanks


    Rob Wright
    E-mail: [email protected]
    Website: http://www.xenonic.com
    The First Member of Honeybee's Club
    Favourite words: Zugzwang and Empiric

  2. #2
    <SCRIPT LANGUAGE="JavaScript">
    if (navigator.appName.indexOf('Internet Explorer') != -1 && navigator.appVersion.substring(0,1) >= 4) {
    location.href = 'IE4.html';
    } else {
    location.href = 'noIE4.html';
    }
    </SCRIPT>

    havn't tested it but it should work.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width