I have been looking at a lot of example for enlarging an image with the same image
$("#imgSmall").click(function(){
$("#imgBig").attr("src","http://www.freeimageslive.com/galleries/space/earth/pics/a17_h_148_22718.gif");
$("#overlay").show();
$("#overlayContent").show();
});
$("#imgBig").click(function(){
$("#imgBig").attr("src", "");
$("#overlay").hide();
$("#overlayContent").hide();
});
What I am looking for is clicking SVG shape (instead of an image), and enlarge to show another image (instead of showing the same image previously).
I am using jquery to do this.