Deny Internet Explorer IE script

I know some sites like www.me.com prohibit IE6. It works when the page detects the IE6 browser, and this will cause the DIV to let the user know when it first accesses the website. Then the user closes, this notification no longer appears (at least for this session recorded in the cookie).

Where can i get the script?

+3
source share
4 answers

I found a script for this:

IE6 No More

It works well, but it displays every time a new page is displayed. No cookie track at all. I am still looking for one that displays only once.

0

See this answer for identifying the browser , everything else is just jquery to add a div to the DOM and allow the functionality for the user to close it. You can then write to the cookie so that a warning is displayed.

+2
source

I wrote this to add to my websites.

<script type="text/javascript" src="http://aquawicket.com/noie.js"></script> 
<script> noie(); </script>
0
source

Source: https://habr.com/ru/post/1761736/


All Articles