📜 ⬆️ ⬇️

JQuery 2.0 will not support IE 6/7/8

JQuery developers have published a plan for the release of new versions of the library.


The goal is that 1.9 and 2.0 should be interchangeable within the supported API sets. When jQuery 2.0 comes out, developers will have a choice of which version to use: do they need IE 6/7/8 support? The jQuery 2.0 version will be smaller and with better performance.

Alternatively, you can go directly to jQuery 2.0, but enable jQuery 1.9 download for visitors with old IE.

<!--[if lt IE 9]> <script src="jquery-1.9.0.js"></script> <![endif]--> <!--[if gte IE 9]><!--> <script src="jquery-2.0.0.js"><</script> <!--<![endif]--> 

There will be no oldIE plug-in for jQuery 2.0, this makes the library code too complicated.

')

Source: https://habr.com/ru/post/146758/


All Articles