Loading...

DEV/ 제이쿼리 select box onchange

select box 변경 시 발생하는 이벤트

제이쿼리는 head 에 제이쿼리를 넣어주셔야 돼요. <html> <head> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> </head> ... 제이쿼리 부분만 따로 살펴볼게요 :) $(function(){ // id 가 select_box 인 아이템이 변경되었을 때 $('#select_box').change(function(){ // id 가...

DEV/ 이미지 경로로 새 창 띄워서 미리보기

이미지 미리보기 새 창 띄우기

이건 간단한 방법이구요, window open 으로도 열 수 있습니다. 지금은 새 창으로만 열리도록 해보겠습니다. html <div class="content"> <img src=" /assets/img/../layout/head-bg-s.jpg"> </div> css ( 필수가 아니에요. ) .content img { cursor:...

BLOG/ robots.txt 동작 테스트 해주는 사이트

robots.txt 가 잘 사용되고 있는지 확인할 수 있는 사이트입니다. robots.txt 위치를 사이트 주소와함께 input box 에 넣고 check 해주세요. http://tool.motoricerca.info/robots-checker.phtml no errors found in this robots.txt file .. 오류가 없다는...

DEV/ 메모리 부족 Fatal error: Allowed memory size of ~ bytes exhausted ...

메모리 제한을 늘리는 방법

Fatal error: Allowed memory size of ~ bytes exhausted … 에러 발생 시 제일 상단에 작성하시면 됩니다 :) .. 메모리가 부족해서 발생하는 에러인데요, 무조건 무제한으로 늘리는 건 좋지 않습니다 !!...

DEV/ jQuery url 정보 확인하기

현재 url 정보를 확인

console.log 로 찍어서 확인하기 console.log 는 브라우저의 개발자 도구에서 확인할 수 있습니다. 윈도우: F12 맥: opt + cmd + i $(function(){ console.log( "href: " + $(location).attr( "href" ) ); console.log(...