internet explorer 9 - Application does not support IE9. Any way I can notify my IE9 users through javascript? -


Unfortunately our webmail client distributed from Oracle does not conform to the new IE 9.

Does anyone know in a smart way that I can modify the login page to notify any IE9 users that it is not compliant?

You are actually reaching it completely wrongly.

Instead of compelling users to not use IE 9, force IE 9 to use the compatibility mode such as IE8 (or IE7). > Throw it into the header (or in the http-header);

  & lt; Meta http-equiv = "X-UA-Compatible" content = "IE = 8" />   

And it will behave as IE8.

You can read more about this

Comments