Skip to content

Instantly share code, notes, and snippets.

@DimitarChristoff
Created February 10, 2011 21:21
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DimitarChristoff/821370 to your computer and use it in GitHub Desktop.
Save DimitarChristoff/821370 to your computer and use it in GitHub Desktop.
Feature detect base64 support for images in mootools
// http://www.jsfiddle.net/5JT45/10/show/
(function() {
Browser.Features.base64 = null;
var callback = function() {
Browser.Features.base64 = this.width == 1 && this.height == 1;
// alert(Browser.Features.base64); // true || false
};
var img = new Image(), element = document.id(img) || new Element("img");
element.onload = element.onerror = element.onabort = callback;
// 1x1 px gif to test with
img.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
})();
@DimitarChristoff
Copy link
Author

is it humanly possible to make more mistakes on a less-than-10 lines snippet? hopefully it's now done and dusted.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment