Привет, Гайз, вот мое решение этой проблемы
Загрузите jQuery-плагин "pngFix" из (http://jquery.andreaseberhard.de)).
Отличный плагин к слову !!!
- Измените эти строки следующим образом:
// this line
jQuery(this).find("img[src$=.png]:visible").each(function() {
// this line
jQuery(this).find(":visible").each(function(){
// and this line
jQuery(this).find("input[src$=.png]:visible").each(function() {
- до конца Поместите этот код
// Store a reference to the original method.
var _show = jQuery.fn.show;
// Overriding Show method.
jQuery.fn.show = function(){
// Execute the original method.
_show.apply( this, arguments );
// Fix Png
return $(this).pngFix();
}
//No more problems with hidden images
})(jQuery);
//The End