Ask questions and get good answers on jQuery

1
1

Hi,

I try the demo on this site and there is a bug of this component.

  • Open the demo page in Internet Explorer 7 (IE7)
  • Click on the Show Gallery 1
  • After the Slide show runs, click on Close
  • Click again Show Gallery 1.
  • No image will be loaded.

Please fixed this.

Thanks for great gallery

asked Nov 02 '09 at 11:26

Minh's gravatar image

Minh
111

edited Nov 05 '09 at 09:30

Matteo%20Bicocchi's gravatar image

Matteo Bicocchi ♦♦
1776129


There's a bug that prevent to get the src of the images the second time a gallery is shown in IE7. You'll find this fix and more issue on next release. If you need to solve it now you have to change line 30:

from

  $(origGallery).find("img").each( function(){$(this).attr("srcx",$(this).attr("src"));});

to

  $(origGallery).find("img").each( function(){if($(this).attr("src")) $(this).attr("srcx",$(this).attr("src"));});

answered Nov 02 '09 at 21:21

Matteo%20Bicocchi's gravatar image

Matteo Bicocchi ♦♦
1776129

edited Nov 03 '09 at 09:26

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Tags:

×3
×3

Asked: Nov 02 '09 at 11:26

Seen: 433 times

Last updated: Aug 04 '10 at 15:23

jQuery main site - Matteo Bicocchi