Skip to content

Instantly share code, notes, and snippets.

View PavloKovalov's full-sized avatar
🇺🇦
https://t.me/js_kitchen

Pavlo Kovalov PavloKovalov

🇺🇦
https://t.me/js_kitchen
View GitHub Profile
// Определение версии Internet Explorer (IE) в JavaScript
// Источник: http://tanalin.com/articles/ie-version-js/
if (document.all && !document.querySelector) {
alert('IE7 или ниже');
}
if (document.all && document.querySelector && !document.addEventListener) {
alert('IE8');
}