민서네집

IE에서 d3 라이브러리 undefined error 해결법 본문

Javascript

IE에서 d3 라이브러리 undefined error 해결법

브라이언7 2014. 8. 6. 14:43

<참조 사이트>




<해결책>

This can be fixed with a DOCTYPE:

<!DOCTYPE html>

And a meta tag:

<meta http-equiv="X-UA-Compatible" content="IE=edge" />

Without those, IE will go into quirks mode and not understand what CSSStyleDeclaration is.


Comments