# 브라우저 호환 관련 문제
# document.head
IE9 미만 브라우저에서 document.head
속성을 지원하지 않는다.
# 해결
document.getElementsByTagName('head')[0]
# 관련 문서
# getComputedStyle
IE9 미만 브라우저에서 getComputedStyle
함수를 지원하지 않는다.
# 해결
function getStyle(element) {
return window.getComputedStyle ? getComputedStyle(element) : element.currentStyle;
}