Hello all!
I am wondering if there is a way to prevent people from accessing my site on Internet Explorer.
Not sure where to begin.
Any advice?
Prevent Website Access on Internet Explorer
Hello all!
I am wondering if there is a way to prevent people from accessing my site on Internet Explorer.
Not sure where to begin.
Any advice?
Dear @kurtwoerpel
that's a good move :-)
Not sure if I can help you with this one.
I would need to google as well.
With jQuery you can maybe see which browser is accessing the page and then run a function which is doing something.
Best!
Marius
I am going to do it somehow like this:
not perfect, but it will do :)
<script>
if ( jQuery.browser.msie){
window.location.replace("http://www.website.com/notsupported");
}
</script>
:-) All right! Good luck!