Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Photo album gallery! Re: Photo album gallery!

#122573
Jozsef K.
Participant

HTML:

JS:
$(‘#thumbs li’).click(function() {
var index = $(‘#thumbs li’).index($(this))
$(‘ul’,’#albums’).eq(index).fadeIn().siblings(‘:visible’).fadeOut();
})