tags:

views:

753

answers:

1

This is a pretty cool jquery popup technique for an image. Does anyone know the best way to get a similar thing working to get a div-enclosed table as the pop-up? What I'm trying to do is let the user hover over an image to get a bigger version of the image plus a caption and other details.

+1  A: 

I think that's pretty simple just use Jquery.mouseover(fn)

$("#yourimage").mouseover(function() {
    $("#hidden_div").show();
}).mouseout(function() { 
    $("#hidden_div").hide();
});
McLovin