Skip to content

Instantly share code, notes, and snippets.

@nick1m
Created January 18, 2016 08:13
Show Gist options
  • Save nick1m/681dcdcdf183c567a560 to your computer and use it in GitHub Desktop.
Save nick1m/681dcdcdf183c567a560 to your computer and use it in GitHub Desktop.
добавляем таблицу стилей CSS на JavaScript
// Определяем устройство
// Создаем ссылку на 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