Pagination on iframes doesn't work, because on line 468 of lightbox.js we have:

$('#frameContainer').append('<iframe id="lightboxFrame" style="display: none;" src="'+src+'"></iframe>');

Which appends the new iframe to the bottom of all the existing ones, then later the code, shows the 'top' one.

This lines needs to change to:

$('#frameContainer').html('<iframe id="lightboxFrame" style="display: none;" src="'+src+'"></iframe>');

Sorry but I've no time to make a patch!

Comments

stella’s picture

Status: Active » Fixed

Thanks! I've committed this and it will be included in the next dev release, available later today.

Cheers,
Stella

stella’s picture

Released in Lightbox2 6.x-1.9 and 5.x-2.9.

Cheers,
Stella

Status: Fixed » Closed (fixed)

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