tags:

views:

32

answers:

2

I'm new to jquery so I have no idea where to start.

I want to make an image appear when I click on a thumbnail. Similar to lightbox, but I want it to show up on the actual page. Is there a plugin or specific functions that would make this possible?

+4  A: 

Try popeye for an 'inpage lightbox'

redsquare
A: 

Can't you just place it on the page in a hidden div and use .show() or toggle() to make it visible?

$('.thumb').click(function(){
  $('.image').toggle();
});
Peter Smeekens