Snippet

행정표준코드관리시스템에서 대학교 검색하기

행정표준코드관리시스템에서 대학교 검색하기 대학교 검색 기관코드조회 기관유형선택 > 고등교육기관 Reference https://www.code.go.kr/jsp/index.jsp Post Tags: #검색, #고등교육기관, #대학교, #행정표준코드관리시스템

자바스크립트에서 브라우저 속성 지원 여부 확인하기

자바스크립트에서 브라우저 속성 지원 여부 확인하기 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 …

자바스크립트에서 브라우저 속성 지원 여부 확인하기 Read More »

javascript – 경고창에서 한글이 깨질경우

경고창에서 한글이 깨질경우 <html> <head> <meta http-equiv='Content-Type' content='text/html; charset=euc-kr' /> </head> <body> <script> window.alert('Hello World!\\n헬로우 월드!'); history.go(-1); </script> </body> </html>

뷰포트 예제

뷰포트 예제 user-scalable=no 가 포함되어 있을경우 w3c validator 를 통과하지 못한다. 따라서 PC 와 MOBILE 의 뷰포트를 다르게 설정하는것이 좋다. Summary <!DOCTYPE html> <html lang="ko"> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta …

뷰포트 예제 Read More »

자주 사용하는 A 태그 속성

자주 사용하는 A 태그 속성 tel: <a href="TEL:051-744-26333">051-744-26333</a> <a href="tel:+541147776464">+54 11 4777 6464</a> mailto: <a href="matilto:email@example.com">email@example.com</a>

Scroll to Top