I am trying to create a jQuery image gallery(I rather create one, than use a plugin) I've looked at several different tutorials and selectors, each of which use thumbs. Now my current code is this:
$(document).ready(function(){
$('img').click(function(){
$(this).clone().appendTo('#imageViewer').css({"opacity":1,"height":"50%"});
})
});
The problem, I have it that, I cannot replace the image when another image is clicked. Is there anyway of just making it with the regular images but using CSS to shrink them i.e >height: 20%; opacity:0.2; but when clicked, they show up in a div on the page >height: 50%; opacity: 1;