Цитата:
|
If you’re upgrading from a version before 1.9, we recommend that you use the jQuery Migrate plugin and read the jQuery 1.9 Upgrade Guide, since there have been a lot of changes. It’s easy to use the plugin, just include it in your HTML file after jQuery and open your browser console to see the messages it generates:
<script src="http://code.jquery.com/jquery-2.0.0.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.1.1.js"></script>
|
а еще у них на официальном сайте написано, что если я обновляю библиотеку надо второй код снизу прикрепить.
Тогда как мне совместить несколько скриптов для разных версий jquery?
1 - 1.4.2 + любая версия после 1.9(мой новый скрипт) + migration tool?
и
2 - 1.4.2 + 1.8.2 (например)
в каком порядке написать это все.
Если я все правильно понял, должно быть так:
1:
Код:
|
<script src="js/jquery_1.4.2.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.1.1.js">
< скрипт ></script> |
2:
Код:
|
<script src="js/jquery_1.8.2.js"></script>
< скрипт ></script> |