scottjehl / picturefill

A responsive image polyfill for <picture>, srcset, sizes, and more
http://scottjehl.github.com/picturefill/
MIT License
9.88k stars 1.07k forks source link

Example including IOS/Ipad #669

Closed Webtransformer closed 2 years ago

Webtransformer commented 8 years ago

Hi, until now I had no problems (I thaught). In some IPAD versions the images are missing or are double downloaded. All other browsers (non Safari) are working fine. Currently this is my markup. Can someone look into it? `

                <source src="static/images/1.jpg" media="(max-width: 767px)">
                <source srcset="static/images/2.jpg" media="(min-width: 768px)">
                <!--[if IE 9]></video><![endif]-->
                <img src="static/images/1.jpg" alt="" title="">
            </picture>` 

Sorry...insert code isnt working for me :-/