Created
October 5, 2017 09:42
-
-
Save Titiaiev/f49fefa4987028a368606591319c2724 to your computer and use it in GitHub Desktop.
Заглушка с редиректом для IE<10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--[if lte IE 10]> | |
<meta http-equiv="refresh" content="3; url=http://redirekt.info/article/pishem-redirekt-na-javascript-js.html"> | |
<![endif]--> | |
<!--[if lte IE 10]> | |
<div style="background-color: #3686BB; color: #fff; width: 100%; height: 100%; margin: 0; padding: 50px; box-sizing: border-box; position: fixed; top: 0; bottom: 0;left: 0; right: 0; font-size: 26px;"> | |
<p style="width: 80%; margin: auto;text-align: center;"> Приносим свои извинения. Данный сайт не может корректно работать в браузере "Internet Explorer" ниже 10(-й) версии. | |
Пожалуйста, используйте другой более современный браузер или обновите ваш "Internet Explorer" до 10-11(-й) версии.</p> | |
</div> | |
<script> | |
if(window.stop !== undefined) { | |
window.stop(); | |
} else if (document.execCommand !== undefined) { // для IE | |
document.execCommand("Stop", false); | |
} | |
setTimeout('document.location.href = "http://redirekt.info/article/pishem-redirekt-na-javascript-js.html"', 5000); | |
</script> | |
<![endif]--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment