본문 바로가기
IT_Developers/Javascript

jQuery - 구브라우저 호환 플러그인 / jquery migrate

by 고코더 2021. 11. 3.

 

안녕하세요.

고코더 입니다.

 

 

IE8 버전 이하에서 호환되는 jQuert 버전은 1.8 이하라고 배웠습니다. 하지만 기능 부족하고 최적화가 덜된 구버전 jQuery로 개발하는 것도 매우 어려운 일입니다. 그래서 jQuery에서는 최신 버전에서 구버전 브라우저의 호환성을 위해 플러그인을 배포하고 있습니다. 바로 jquery migrate입니다.

 

jquery migrate

아래 소스처럼 jQuery와 함께 참조를 하여 사용이 가능합니다. 그럼 자동으로 1.9 버전부터 제거된 기능들을 이용할 수 있고 구버전 브라우저에 호환성에 맞게 움직이게 됩니다. 

<script src="https://code.jquery.com/jquery-3.3.0.js">
<script src="https://code.jquery.com/jquery-migrate-3.3.0.js"></script>

jquery-migrate-3.3.0.zip
0.01MB

깃허브

해당 플러그인에 깃허브 주소입니다. 

https://github.com/jquery/jquery-migrate

 

GitHub - jquery/jquery-migrate: A development tool to help migrate away from APIs and features that have been or will be removed

A development tool to help migrate away from APIs and features that have been or will be removed from jQuery core - GitHub - jquery/jquery-migrate: A development tool to help migrate away from APIs...

github.com

 

구버전 브라우저와 싸우는 개발자들 힘내세요!

댓글