My Name is Kay....

DIY , 먹방 , 개발 , 육아 , 여행 좋아합니다.
AdBlock 사용시 화면이 정상적으로 노출되지 않습니다.
포스팅 관련 문의 및 개발 문의는 Email : wkzkfmxksi@gmail.com

추가 포스팅이 이뤄지지 않는 블로그입니다. 문의는 wkzkfmxksi@gmail.com 으로 연락주세요.
etc
2014.02.12 08:30

Jquery Load 유무 체크하기

kay
조회 수 4287 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

페이지 내에 Jquery 가 정상적으로 load 되었는지 체크 하는 방법입니다.


// 1.
if (window.jQuery) {  
    // jQuery is loaded  
} else {
    // jQuery is not loaded
}

// 2.
if (typeof jQuery == 'undefined') {  
    // jQuery is not loaded
} else {
    // jQuery is loaded
}

// .. 만약 Load 되어있지 않다면.. 추가하기
if (!window.jQuery) {
  var jq = document.createElement('script'); jq.type = 'text/javascript';
  jq.src = 'http://code.jquery.com/jquery-latest.min.js';
  document.getElementsByTagName('head')[0].appendChild(jq);
}


참고 Url : http://jquery-howto.blogspot.kr/2009/03/check-if-jqueryjs-is-loaded.html 

?

  1. Smooth Scroll - 스크롤 이동 ( 속도 , 위치 )

    Date2013.04.06 CategoryPlugIn Bykay Views12680
    Read More
  2. sliding horizontal parallax - parallax 공부 샘플

    Date2013.04.17 CategoryPlugIn Bykay Views6151
    Read More
  3. SelectBox Option 값 초기화 및 수정 삭제

    Date2013.03.02 CategoryUI Bykay Views36669
    Read More
  4. Select Box Option 동적 추가 , 삭제 , 복사

    Date2015.09.18 CategoryUI Bykay Views7083
    Read More
  5. select Box option ( 초기화,추가,삭제 )

    Date2013.04.03 CategoryUI Bykay Views9533
    Read More
  6. readonly , disabled 지정하기

    Date2013.10.01 CategoryA to Z Bykay Views4109
    Read More
  7. poshytip - 툴팁

    Date2013.04.15 CategoryPlugIn Bykay Views11804
    Read More
  8. Moodular - 회전,슬라이더, 터치 ,모자이크

    Date2013.05.04 CategoryPlugIn Bykay Views5354
    Read More
  9. Menu Bar

    Date2013.02.06 CategoryUI Bykay Views5176
    Read More
  10. makisu - 메뉴 접기(?)

    Date2013.04.16 CategoryPlugIn Bykay Views18446
    Read More
  11. lightBox2 - 레이어 팝업

    Date2013.04.06 CategoryPlugIn Bykay Views6136
    Read More
  12. jquery-syaku.rolling 상하좌우 롤링 ( 자동롤링 , 버튼 )

    Date2014.02.09 CategoryPlugIn Bykay Views20167
    Read More
  13. Jquery 로 defaultValue 읽어오기

    Date2013.10.03 CategoryA to Z Bykay Views3754
    Read More
  14. Jquery 갤러리 "jQuery-awesome-images-Gallery-lightbox"

    Date2013.07.30 CategoryUI Bykay Views4260
    Read More
  15. jQuery Zoom - 이미지 줌 제어 ( 휠 , 클릭 , 오버 )

    Date2013.04.17 CategoryPlugIn Bykay Views8431
    Read More
  16. Jquery Slider Bar / 슬라이더 바 3종 샘플

    Date2014.07.28 CategoryUI Bykay Views6720
    Read More
  17. jQuery Plugin For Auto Resizing iFrame - iFrame Resizer

    Date2014.03.10 CategoryPlugIn Bykay Views105764
    Read More
  18. jQuery Org Chart - 조직도 그리기

    Date2014.09.01 CategoryPlugIn Bykay Views16618
    Read More
  19. Jquery Load 유무 체크하기

    Date2014.02.12 Categoryetc Bykay Views4287
    Read More
  20. jQuery Learning Center - 공부 공부

    Date2013.04.05 CategoryA to Z Bykay Views4236
    Read More
Board Pagination Prev 1 2 3 Next
/ 3