Skip to content

Instantly share code, notes, and snippets.

@mikespokefire
Created February 4, 2011 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikespokefire/811308 to your computer and use it in GitHub Desktop.
Save mikespokefire/811308 to your computer and use it in GitHub Desktop.
Want to find every PNG on the current page and Alpha transparency fix them with DD_belatedPNG? Then this gist is for you.
$(document).ready(function() {
$('img[src$=".png"]').each(function() {
DD_belatedPNG.fixPng(this);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment