Skip to content

Instantly share code, notes, and snippets.

@nick1m
Created January 18, 2016 08:11
Show Gist options
  • Save nick1m/c83181c405e88a72d13d to your computer and use it in GitHub Desktop.
Save nick1m/c83181c405e88a72d13d to your computer and use it in GitHub Desktop.
определяем мобильный на JavaScript
// Определяем устройство
var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
if(mobile){
// Создаем ссылку на CSS
var cssLink = document.createElement("link");
cssLink.setAttribute("type", "text/css");
cssLink.setAttribute("rel", "stylesheet");
cssLink.setAttribute("href", "css/mobile.css");
document.head.appendChild(cssLink);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment