»
EnglishFrenchVietnamese

Print - Browser Redirect - JavaScriptBank.com

Full version: jsB@nk » Browser » Window » Browser Redirect
URL: https://www.javascriptbank.com/browser-redirect-index.html

Browser Redirect © JavaScriptBank.comThis JavaScript will redirect your browser to a specific page. If you are using Netscape Navigator you will be redirected to a Netscape page. If you are using Internet Explorer you will be redirected to an IE page.

Full version: jsB@nk » Browser » Window » Browser Redirect
URL: https://www.javascriptbank.com/browser-redirect-index.html



JavaScript
<SCRIPT LANGUAGE="JavaScript"><!--NetScape = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 2 ));IE = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 2 ));timer = 5000; // the time to wait until the browser redirectsif (NetScape){function CLBrwNSRedirectTimer() {setTimeout ("CLBrwNSRedirect()",timer)}function CLBrwNSRedirect() {location.href = "netscape.html"} // here you can set the page where the user will goCLBrwNSRedirectTimer()}                                        // if he is using Netscape navigator//Copyright (c) 2002 Coyotee Labs Romania (www.coyoteelabs.go.ro)//This script can be used freely as long as all copyright messages are//intact. Visit WWW.COYOTEELABS.GO.RO for more scriptsif (IE){function CLBrwIERedirectTimer(){setTimeout ("CLBrwIERedirect()",timer)}function CLBrwIERedirect(){location.href = "internet_explorer.html"} // here you can set the page where the user CLBrwIERedirectTimer()}                                                // if he is using Internet Explorer//--></SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->