jQuery에서 제공하는 CDN : http://code.jquery.com/jquery-1.8.3.min.js
jQuery에서 제공하는 최신 jQuery CDN : http://code.jquery.com/jquery.min.js
MS에서 제공하는 CDN : http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js
Google에서 제공하는 CDN : https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
사용방법 : 기존 jQuery 로드 부분을 제거하고
<script type="text/javascript" src="위 4개중 하나"></script>
728x90
'Carpe Programming > jsp & spring & jstl' 카테고리의 다른 글
이미지 그리기 (0) | 2014.06.30 |
---|---|
[tiles] 설정하기 (0) | 2014.03.10 |
[spring] 스케쥴러 설정 (0) | 2013.02.18 |
[jdbc] spring + jeus 환경에서 jeus connection pool 사용 (0) | 2013.01.24 |
[jsp] commons-fileupload 를 이용한 간단한 파일 업로드 (0) | 2012.07.11 |
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
if (typeof jQuery == 'undefined') {
document.write(unescape("%3Cscript src='/Scripts/jquery-1.8.3.min.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
[참조] - http://idev.kr/Programming/886