IE6 png fix and fades

IE6 png fix and fades


Hi
I've had a problem for a long time with using pngfixed elements in IE6
and jquery's fade in and out. My previous ticket seems to have been
lost so I created a new one.
Essentially line 1054 throws an error since png fixed elements
elem.filter.match may be null.
(parseFloat( elem.filter.match(/opacity=([)]*)/) [1] ) /
100).toString().
Can be fixed with :
(parseFloat( (elem.filter.match(/opacity=([)]*)/) [0,100]) [1] ) /
100).toString() :
Ticket here :
http://dev.jquery.com/ticket/1837
Be great to get this in - I have to monkey patch jquery everytime I
build/download it !
Jonah