Skip to content

Instantly share code, notes, and snippets.

@ashumeow
Forked from gregwhitworth/ri-feature-detection.js
Last active August 29, 2015 14:22
Show Gist options
  • Save ashumeow/29a0bdba9391df17a7da to your computer and use it in GitHub Desktop.
Save ashumeow/29a0bdba9391df17a7da to your computer and use it in GitHub Desktop.
(function (window) {
document.addEventListener("DOMContentLoaded", function (e) {
var supports = {
srcset: false,
currentSrc: false,
sizes: false,
picture: false
};
var img = new Image();
if ("srcset" in img) {
supports.srcset = true;
}
if ("currentSrc" in img) {
supports.currentSrc = true;
}
if ("sizes" in img) {
supports.sizes = true;
}
if ("HTMLPictureElement" in window) {
supports.picture = true;
}
console.log('Picture support: ' + supports.picture);
console.log('sizes support: ' + supports.sizes);
console.log('srcset support: ' + supports.srcset);
console.log('currentSrc support: ' + supports.currentSrc);
});
}(this));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment