Skip to content

Instantly share code, notes, and snippets.

@kyokutyo
Created April 9, 2009 05:40
Show Gist options
  • Save kyokutyo/92264 to your computer and use it in GitHub Desktop.
Save kyokutyo/92264 to your computer and use it in GitHub Desktop.
/*
* Depends:
* jquery.js
*/
$(document).ready(function (){
jQuery.each(jQuery.browser, function (i, val){
if(i=="msie" && val && jQuery.browser.version<7) {
$("img[src$='.png']").each(function (){
this.src = this.src.replace('png','gif');
});
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment