Skip to content

Instantly share code, notes, and snippets.

@neodigm
Last active December 18, 2018 20:34
Show Gist options
  • Save neodigm/234b8ea6e2ee3db1f3e21b0d3f326023 to your computer and use it in GitHub Desktop.
Save neodigm/234b8ea6e2ee3db1f3e21b0d3f326023 to your computer and use it in GitHub Desktop.
JavaScript WebP support detection
function canIUseWebP() { // Original Author Unknown
var elem = document.createElement('canvas');
if (!!(elem.getContext && elem.getContext('2d'))) {
return elem.toDataURL('image/webp').indexOf('webp') == 0;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment