Cross Browser
크로스 브라우저 (Cross Browser)
정의
대응
예제
IE 호환성 문제 해결
<meta http-equiv="X-UA-Compatible" content="IE=edge">기능 탐지
브라우저 탐지
랜더링 엔진
브라우저 별 대응
데스크톱
모바일
웹뷰
Last updated
크로스 브라우저 (Cross Browser)
<meta http-equiv="X-UA-Compatible" content="IE=edge">Last updated
function getElement(id) {
if (document.getElementById) {
return document.getElementById(id);
} else if (document.all) {
return document.all[id];
} else {
throw new Error("No way to get element");
}
}navigator.userAgent