<!--[if IE 11]>
<div id="warning">
<h4 class="red" style="color: red;">Your Browser Is Not Supported!</h4><br />
</div>
<![endif]-->
function detectIE() {
var ua = window.navigator.userAgent;
var msie = ua.indexOf('MSIE ');
if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {
return true;
}
return false;
}
if ( detectIE() ) {
// скрыть прелоадер
// показать некое сообщение пользователю.
}