I know how to use the navigator object to find the user agent string, but Internet Explorer 11 decided to be different and go towards every other browser, saying it's Netscape.
I have to patch the issue I'm having (particularly with style sheets) but I'm wondering how, in the meantime, I can block out all versions of Internet Explorer. Period.
Here's what I have so far, but this, of course, isn't working.
window.addEventListener("load", function($) {
if ($.browser.msie) {window.location = 'http://google.com/chrome';}});
and of course...
<script src="http://code.jquery.com/jquery-1.11.2.min.js"></script>
I am not looking for detection of simply Internet Explorer 11, but ALL versions of IE.