Enable!

티스토리에서 ssl을 강제 적용한 결과 일반 http 주소로 된 제이쿼리를 불러오지 못하는 오류가 있습니다.

skin.html을 열고 jquery를 head에서 찾아서 http:// 를 https:// 로 바꿔주시면 됩니다.

 

before

<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>

 

after

<script src="https://code.jquery.com/jquery-latest.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>