Avoiding Conflicts with Other Libraries(다른 라이브러리와 충돌 피하기)
https://learn.jquery.com/ 따라하기 Avoiding Conflicts with Other Libraries(다른 라이브러리와 충돌 피하기) 기본적으로 jQuery는 $를 jQuery의 단축키로 사용합니다. 따라서 $ 변수를 사용하는 다른 JavaScript 라이브러리를 사용하고 있는 경우 jQuery와 충돌할 수 있습니다. hello 오류 발생 : Uncaught TypeError: $(...).ready is not a function at ...이러한 충돌을 피하려면 페이지에 로드된 jQuery를 사용하기 전에 jQuery를 논-컨플릭트 모드로 설정해야 합니다. Putting jQuery Into No-Conflict Mode(논-컨플릭트 모드로 jQuery 설정하기) jQuery..