Should be:
$("#scope-image").css("fil
as far as I remember doing this in jQuery
Main Topics
Browse All TopicsProblem:
My colleague has added a jQuery script that causes images to fade out and new ones fade in when a user chooses a different color. HOWEVER, the fading effects cause IE to bug out, the images flicker but never swap and it destroys the IE PNG hack in IE6.
What I need:
-to get the jQuery fadeTo (or suitable alternative) working in all versions of IE
-to work with the PNG hack for IE6
-work with all major browsers
-work with dynamic SRC/pathnames (from Fatwire Content Server)
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: wilq32Posted on 2009-10-07 at 00:36:54ID: 25512872
Can you provide a page where I could see the effect? Basically you should set a filter on an image that you changing for IE6 fix - this is why IE does not work. If you could read: http://koivi.com/ie-png-tr ansparency / There is a explanation how those PNG fix work like. They just simply use:
crosoft.Al phaImageLo ader(src=' test.png', sizingMethod='scale');
ilter","pr ogid:DXIma geTransfor m.Microsof t.AlphaIma geLoader(s rc='" + $(this).attr("href") +"', sizingMethod='scale');
filter: progid:DXImageTransform.Mi
Where - as you see - is a src poiting to proper file. So if you want to use this dynamically simply you can write something like this:
$("#scope-image").style("f
hopefully you get the idea.
Cheers