javascript Programming Glossary: haswebp
Detecting WebP support http://stackoverflow.com/questions/5573096/detecting-webp-support this question I think something like this might work var hasWebP false function var img new Image img.onload function hasWebP.. false function var img new Image img.onload function hasWebP img.height 0 img.width 0 img.onerror function hasWebP false.. hasWebP img.height 0 img.width 0 img.onerror function hasWebP false img.src 'http www.gstatic.com webp gallery 1.webp' In..
|