자바스크립트에서 브라우저 속성 지원 여부 확인하기
자바스크립트에서 브라우저 속성 지원 여부 확인하기 DOM Attribute placeholder attribute is supported if('placeholder' in document.createElement('input')){ … } download attribute is supported if(typeof document.createElement('a').download != "undefined"){ … } img srcset attribute …