Why this code not working in IE6+7?(my code) http://jsfiddle.net/eLBPE/1/

Please help me I spent time without find the reason(I check on ie 6+7 - not working after I check that the code working in Firefox + ie8)

(This simple jquery light plugin that switch pictures by cross-fade effect).

Thanks in advance

link|improve this question

Doesn't seem to work in IE9 either. – Shaz Feb 17 '11 at 0:10
feedback

2 Answers

up vote 1 down vote accepted

This is a problem with the way IE implements the href attribute. Instead of returning the actual href value you want, which is something like #slide3, it's returning the absolute path like http://mysite.com/#slide3. The easy way to deal with this is the split the string and just extract the actual anchor tag you want, which works in all browsers. Here is what I changed your rotate javascript function to:

                 var rotate = function () {

                     activeBefore.removeClass('active'); 
                     active.addClass('active');
                     var href = activeBefore.find('a').attr('href');
                     href = href.split('#');
                     $('#' + href[href.length-1]).fadeOut('slow',function(){
                     $(this).css('display','none');
                 });

                    href = active.find('a').attr('href');
                    href = href.split('#');
                    $('#' + href[href.length -1]).fadeIn('normal',function(){
                     //$(this).css('display','block');
                 });

                 };

Here it is on jsfiddle: http://jsfiddle.net/eLBPE/3/

link|improve this answer
thank you very much! – Yosef Feb 28 '11 at 23:24
very good explanation – Yosef Apr 4 '11 at 10:10
feedback

The most obvious problem is that you shouldn't put script tags in the script box. You have it set to onLoad so it takes everything in the textbox and places inside the onLoad function.

So place the script tag for jquery in the head in the html box instead. Then remove the other script tag.

I also moved you document.ready function to then end and got it "working" in IE7 http://jsfiddle.net/pTcXB/. The images are not being replaced in IE event though the rotation work.

I'm pretty sure the reason is here:

$(activeBefore.find('a').attr('href')).fadeOut('slow',function(){
     $(this).css('display','none');
}); 

IE7 atleast is a bit tricky when it comes to url's. It might be jquery specific but I never write plain javascript anymore so I'm not sure. If you add a link to the dom like elem.append('') that href will be http://www.blablabla.bla#something. Knowing that you can solve it in two way. Either add the link and then set the href by elem.attr('href', '#something') or you can split and the hash and build the url from there.

I tried the second approach and got it working(only tested IE7 through the IE9 emulator) http://jsfiddle.net/pTcXB/8/

link|improve this answer
Thanks but your demo not working at all in ie7.jsfiddle.net/pTcXB/8 – Yosef Feb 20 '11 at 21:52
Are you running the real IE7. Because it certainly works for me in IE9 wih Browser mode: IE7 and Document Mode: IE7 Standards. It could be some differences in the emulation – Mikael Eliasson Feb 20 '11 at 22:02
i running real ie7 - the pic not change – Yosef Feb 20 '11 at 22:15
Do the links rotate? If so try uncommenting the alert I placed before the rows shown above and make sure it alerts #something – Mikael Eliasson Feb 21 '11 at 6:28
Sorry, I posted pretty much the same solution you did in your second part, should have read your explanation more closely rather than just the comments. Voting up. – dahrnsbrak Feb 25 '11 at 0:11
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.