11
Mar
stored in: JavaScript, jquery
I tried to use the pngFix from this website: http://jquery.andreaseberhard.de/pngFix/. But it didn’t work and i received an javascript error in IE6. After several minutes of debugging and tries i found out that the error is generated by old syntax in selecting elements. It used jQuery(this).find(“img[@src$=.png]“).each(…); instead of jQuery(this).find(“img[src$=.png]“).each(…); So the fix is: Remove the [...]
