Tag: redirect
-
Create a JavaScript file called iecheck.js and paste the following in the snippet: [sourcecode language=”javascript”] function trueOrFalse() { return true; } function IeVersion() { // Set defaults var value = { IsIE: false, TrueVersion: 0, ActingVersion: 0, CompatibilityMode: false }; // Try to find the Trident version number var trident…
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
There may be cases where you don’t have as free of access to the meta information or web.config to set redirects in place. You can also do this with JavaScript! Here’s the snippet (place this in between script tags in the body or applicable section in the body that allows…
-
There will likely be cases where you have sites that were built for IE but are not caught up to Edge yet. What do you do in the interim? One idea that I applied on a legacy site was to inform take the Edge user to a specific page. You can…
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
I spent a while looking around for something that would help me tighten up some pages that did not need reached unless they came from another page that I had authorized. In this example we check first that there is a referring URL and if there is not then go…