I use this quick snippet with an image to close a show/hide DIV:
$('a.close').click(function() {
$('#timeline-2010-1').hide();
$('#timeline-2010-2').hide();
return false;
});
The problem is that when I close one box all of the boxes close...
Is there a way to modify this so that when you click the image "x" on that specific DIV ID, only that one closes, and it doesn't close all of them?