모바일 사파리에 비디오(MP4) 실행 안되는 경우 (또는 인라인 재생안되는 경우) playsinline 추가 단, 아이폰 저전력 모드에서는 안됨 [ Web 관련 ]/HTML, CSS 2년 전
jQuery bind(), unbind(), on(), off() 이벤트 등록 및 해제 jquery 1.7부터 bind/unbind가 개선되어 나온 것이 on/off 메서드 click! 또는 click! [ Web 관련 ]/jQuery 2년 전
메인을 특정 페이지로 강제 이동 시키기 head 쪽 적당한 곳에 if (defined("_INDEX_")) { header("Location: "이동할 페이지 주소"); return; } [ Web 관련 ]/그누보드 관련 2년 전
PDF 를 WORD 파일로 변환 (무료, 온라인) https://smallpdf.com/pdf-to-word PDF to Word - Free online Converter Convert PDF files to Word documents for free online. Turn a PDF into an editable Word DOC in seconds without losing quality. No watermarks, no file size limits. smallpdf.com https://www.adobe.com/kr/acrobat/online/pdf-to-word.html PDF를 Word로 변환하기 | Adobe Acrobat (대한민국) 온라인에서 PDF를 Word로 포맷 변화 없이 변환하세요. PDF를 Word로 변환하는 작업이 수월해졌습니.. 기타자료 3년 전
연관배열 추가, 삭제 (=>) 추가 $a['d'] = "헤헤"; $b[4] = "라"; $c['ad'] = "마우스"; 삭제 unset($a['d']); // unset(배열[삭제하고자하는 원소의 키값]); 연관배열에 키값 확인 array_key_exists("d",$a) //array_key_exists("찾고자 하는 키 값", 배열) =>true 혹은 false를 return [ Web 관련 ]/php 3년 전