Skip to content

Instantly share code, notes, and snippets.

@johjacb
johjacb / gist:5886002
Created June 28, 2013 16:27
modernizr WebP detect
if (Modernizr.webp) {
var webpImg = document.createElement("img");
webpImg.setAttribute('src', '/image.webp');
webpImg.setAttribute('alt', 'na');
document.body.appendChild(webpImg);
} else
//fallback
}