JavaScript Source Code 3000: User Details: Java Enabled Redirect
Java Enabled Redirect
If Java is enabled in the visitor's browser, they are redirected to a Java-enhanced page. Otherwise, if Java is disabled they are sent to the non-java page. Neat!
JavaScript Source Code 3000: User Details: Java Enabled Redirect Simply click inside the window below, use your cursor to highlight the script, and copy (type Control-c or Apple-c) the script into a new file in your text editor (such as Note Pad or Simple Text) and save (Control-s or Apple-s). The script is yours!!!
<!-- ONE STEP TO INSTALL JAVA ENABLED REDIRECT:
1. Copy the coding into the HEAD of your HTML document -->
<!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<! > <! >
<!-- Begin if (navigator.javaEnabled()) window.location = "java-page.html"; else window.location = "non-java-page.html"; // End --> </script>