What features of Zepto do not work on ie9?

On the project website, zeptoI do not see the version of IE as supported, not even 9.

I am considering using it zeptoin webapp (not mobile), but I want to support IE 9 +

Is it possible? What functions / methods zeptodo not work on IE9?

+5
source share
1 answer

Out of curiosity, I just downloaded the following page and tested it in current versions of Chrome, Firefox, Safari, and IE9. In all but IE9, I was greeted by a message alert(). IE9 did not warn me and contained two errors in the console. Here's the code I used with the Zepto library in the same folder.

<!doctype html>

<h1>Zepto Browser Support Test</h1>

<script src="zepto.min.js"></script>
<script>
  $(function () {
    alert('Zepto Ready Successful!');
  });
</script>

, , -, IE9, , Zepto .

, Zepto , IE, - jQuery. .

Internet Explorer, jQuery. , , IE 10, document.write:

<script>
document.write('<script src=' +
('__proto__' in {} ? 'zepto' : 'jquery') +
'.js><\/script>')
</script>

Zepto docs . , !

+13

All Articles