분류전체보기 234

javascript http html5 geolocation api 사용제한

출처 : https://medium.com제목이 상당히 어렵다. 좀 더 설명을 붙이면, https와 같이 보안설정이 된 사이트가 아닌경우 getCurrentPosition()과 watchPosition()과 같은 HTML5 Geoloaction api를 사용하면 아래와 같은 에러를 뱉어내며 작동되지 않는다.getCurrentPosition() and watchPosition() no longer work on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gl/rStTGz for more details.위 문..

티스토리 초대장 배포합니다

티스토리 초대장 0장 나눠드립니다.+ 남은 초대장 수 : 0 오랜만에 티스토리 초대장을 배포합니다. 티스토리 블로그에 관심이 있고, 제 블로그와 이웃하며 교류하고 싶으시다면 댓글로 초대장을 신청해주세요. [신청방법]이메일주소, 주제와 함께 왜 티스토리 블로그를 만들려고 하는지(네이버도 있는데 왜..) 비밀댓글로 간단히 남겨주세요.기존에 타사에 운영하던 블로그가 있다면 주소를 남겨주세요. [유의사항]1. 티스토리는 타 블로그 서비스에 비해 손이 많이 갑니다. 단순 호기심으로 신청하지 않으셨으면 합니다.2. 초대장을 받으신 뒤 2일 내에 블로그를 개설하지 않으시면 초대장 회수합니다.3. 보내드린 초대장으로 스팸·상업성이 짙은 블로그를 개설하셨다면 바로 신고처리하겠습니다.4. 선착순 아닙니다. 신청댓글은 한번..

javascript daum 주소검색 api https

다음주소검색 api 사용 1. SCRIPT IMPORT(https) script src="https://spi.maps.daum.net/imap/map_js_init/postcode.v2.js" 2. JS // 우편번호 찾기 화면을 넣을 element var element_layer = document.getElementById('layer'); function closeDaumPostcode() { // iframe을 넣은 element를 안보이게 한다. element_layer.style.display = 'none'; } function execDaumPostCode() { new daum.Postcode({ oncomplete: function(data) { // 검색결과 항목을 클릭했을때 실행할..

jquery datepicker monthpicker 월선택

'월 선택'시 사용 1. jquery include/ ui포함 2. 3. $(function(){ /* MonthPicker 옵션 */ options = { pattern: 'yyyy-mm', // Default is 'mm/yyyy' and separator char is not mandatory selectedYear: 2017, startYear: 2008, finalYear: 2020, monthNames: ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'] }; /* MonthPicker Set */ $('#monthpicker').monthpicker(options); /* 버튼 클릭시 MonthPicker S..