I've created a website using latest Drupal 6.*. I've installed and have the Jquery Slideshow running just fine in Safari and Firefox on both Mac and PC platforms. However, the slideshow does not work in IE8. It just shows all the images I am using the in show running down the page rather than actually showing them as a slideshow.

I've noticed other web designers have the same issue and wondered if their was a Drupal fix/solution.

Thanks in advance for any help.

Comments

dougilawson’s picture

Same problem here. Just to add, in compatibility mode it shows nothing! same with IE7

almiesel’s picture

Iam using CCK Blocks and somehow it works totally fine in Firefox but in IE I get an error like discribed above.

Meldung: Ungültiges Argument.
Zeile: 5
Zeichen: 7
Code: 0

example

http://dev.artecom-event.de/

yurg’s picture

Greetings.

Not sure is it relevant, but in similar case (IE8 displays all images instead of slide show) I was able to "fix" it by adding both width and height to imagecache preset, which is used for slideshow. As you know, some imagecache presets (for example Scale) allows to have only one value (width or height). But I've found if height is not set, when slideshow jQuery code looks like this:

Drupal.behaviors.jquerySlideshow = function(){
        $('.jquery_slideshow').css({height:'px'});
        $('.jquery_slideshow').css({width:'540px'});

Please mention empty height property above. And while it works in FF & Opera & Safari, it not works in IE. After adding height to my imagecache preset code became to look as follow:

Drupal.behaviors.jquerySlideshow = function(){
        $('.jquery_slideshow').css({height:'390px'});
        $('.jquery_slideshow').css({width:'540px'});

..and slideshow start working in IE8.

Hope it'll be useful to someone.

xalexas’s picture

Thanks for the tip. That have solved the problem.

sammys’s picture

I've submitted a patch so it'll work out of the box: #730934-2: IE 7 Errors

sammys’s picture

An updated patch: #730934-4: IE 7 Errors

yurg’s picture

Issue summary: View changes
Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.