JavaScript
- 5 ответов
- 0 вопросов
4
Вклад в тег
if (window && window.top === window) {
// основная страница окна
} else {
// iframe
let head = window.document.getElementsByTagName('head')[0]
function includeCSS(aFile, aRel){
let style = window.document.createElement('link')
style.href = aFile
style.rel = aRel || 'stylesheet'
head.appendChild(style)
}