How can I detect support for WebP via Javascript? I'd like to use feature detection rather than browser detection if possible, but I can't find a way to do so. Modernizr (www.modernizr.com) doesn't check for it.
|
|
I think something like this might work:
In Firefox and IE, the "onload" handler just won't be called at all if the image can't be understood, and the "onerror" is called instead. You didn't mention jQuery, but as an example of how to deal with the asynchronous nature of that check you could return a jQuery "Deferred" object:
Then you could write:
A more advanced checker: http://jsfiddle.net/JMzj2/29/. This one loads images from a data URL and checks whether it loads successfully. Since WebP now also supports lossless images, you could check whether the current browser supports just lossy WebP or also lossless WebP. (Note: This implicitly also checks for data URL support.)
|
|||||||||||||
|
|
WebPJS uses smarter WebP support detection with no external images required: http://webpjs.appspot.com/ |
|||||||
|
|
Here is code without having to request an image (partially taken from webpjs.appspot.com)
|
|||
|
|
|
I've found webp support feature detect requires 300+ms when the page is JavaScript heavy. So I wrote a script with caching features:
It will only detect once when user first accessing the page.
|
|||
|
|