Full error message:  Object doesn’t support property or method. I got this error message in Internet Explorer 7 every time i tried to run code similar to the next snippet: window.opener.form.select[select.length]  = new Option(text, value); The problem is that on Internet Explorer due to some mysterious security restrictions you are not allowed to add new [...]

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 [...]