This website uses minimal CSS to respect the older browsers which have problems displaying good looking browsers


NoIE

About

NoIE is my own approach to helping users who have older browsers get their hands on a more reliable browser like Google Chrome.
Only thing you as developer have to do is leave a script tag with the source pointing to my CDN and the script will automatically work for you.

Pages

Demo (Latest) - This contains demos if you want to try it out before adding it to your browser

Download

A download could be found using the 2nd demo link above (Latest) or by copying the line below

For currently latest version:
<script src="http://noie.kirdow.com/NoIE/1.1.1/noie.js"></script>

For always latest version:
<script src="http://noie.kirdow.com/NoIE/auto/noie.js"></script>

Configs?

Version 1.1.0 added Configurations in case your website needs different delays or if your definition of "outdated" is different than ours.

To use it, just add a script tag right after the first script and configure it there. Note that the code has a delay of 1 second before it starts running so try being done before that passes.

Anyway, here's the code to get a simple understanding of the configs:
<script src="http://noie.kirdow.com/NoIE/1.1.1/noie.js"></script>
<script>
    // Use this to edit the delay. Measured in milliseconds and minimum is 1000, default is 10000
    NoIE.setdelay(10000);
    // Use this to edit the preferred version cap. Latest IE version is 11.0 and up, so make sure to enable that unless otherwise preferred. Default is 10.0
    NoIE.setversion(10.0);
</script>