오류코드 Uncaught TypeError: Cannot read properties of undefined (reading 'top') 첫번째 해결 방안 (실패) if ('top' in $(el_target).offset()) { // 'top' 속성이 존재하는 경우에 대한 처리 // ... } else { // 'top' 속성이 존재하지 않는 경우에 대한 처리 // ... } 실패 이유 : 1) 오류코드 발생 2) Uncaught TypeError: Cannot use 'in' operator to search for 'top' in undefined 3) $(el_target).offset() 값 자체가 undefined이기때문에 두번째 해결 방안 (성공) var offset = $(el_targe..
1) 이미지 가로세로 비율대로 안줄여서 이미지가 깨짐 2) object-fit:cover 적용 3) 선명도를 위해서 image-rendering: -webkit-optimize-contrast;
https://hi-today-yun12.tistory.com/13
https://lpla.tistory.com/139
https://ktsmemo.cafe24.com/s/javascript/317 el = this function checkFile(el){ // files 로 해당 파일 정보 얻기. var file = el.files; // file[0].size 는 파일 용량 정보입니다. if(file[0].size > 1024 * 1024 * 2){ // 용량 초과시 경고후 해당 파일의 용량도 보여줌 alert('2MB 이하 파일만 등록할 수 있습니다.\n\n' + '현재파일 용량 : ' + (Math.round(file[0].size / 1024 / 1024 * 100) / 100) + 'MB'); } // 체크를 통과했다면 종료. else return; // 체크에 걸리면 선택된 내용 취소 처리를 해야함. // ..
http://dev.epiloum.net/1395
https://nyaongnyaong.com/20
https://megabogo.github.io/plugin/fullpage/lang/korean/
https://listentothesound.tistory.com/entry/%ED%92%80%ED%8E%98%EC%9D%B4%EC%A7%80-%ED%8C%9D%EC%97%85%EC%8B%9C-%EB%92%A4%EC%97%90-%EC%8A%A4%ED%81%AC%EB%A1%A4-%EC%95%88%EB%90%98%EA%B2%8C-%ED%95%98%EA%B8%B0-%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8 풀페이지 팝업시 뒤에 스크롤 안되게 하기 자바스크립트 go_view 를 클릭하면 body 를 얼려버립니다 close를 클릭하면 다시 body가 풀어집니다 $('.go_view').click(function(){ $('.pop_up').stop().fad..
https://ktko.tistory.com/entry/jQuery-%EC%84%A0%ED%83%9D%EC%9E%90%EC%9E%90%EC%8B%9D-%EC%A1%B0%EC%83%81-%ED%98%95%EC%A0%9C
텍스트 아레아 id = C_contents var oEditors = []; nhn.husky.EZCreator.createInIFrame({ oAppRef: oEditors, elPlaceHolder: "C_contents", sSkinURI: "../se2/SmartEditor2Skin.html", fCreator: "createSEditor2" }); 서브밋할때 추가 oEditors.getById["C_contents"].exec("UPDATE_CONTENTS_FIELD",[]);
php // 날짜 형식이 Y/m/d 이렇게 되어야 익스에서 작동 date("Y/m/d H:i:s", strtotime($contents['C_end_date'])) js function calculateRemainTime(endTime, thisObj){ const xmasDay = new Date(endTime); const currDay = new Date(); let diff = xmasDay - currDay; const diffDays = Math.floor((xmasDay.getTime() - currDay.getTime()) / (1000 * 60 * 60 * 24)); diff -= diffDays * (1000 * 60 * 60 * 24); const diffHours = Math.flo..