Can someone hit me up with a code that makes images pop-up as larger images when I hover the mouse on the thumbnail? I found some codes by googling, but I need the following specific things : The enlarged image should be the exact size as the original size of the image (actually all my images are not of fixed width) The enlarged image should no go out of the browser scope (codes I found in google don't do this) Can someone please help me with this? Thanks.
Make a div with display property none and width 90%, put larger image in this div. Then use mouseover function in jquery to show that div by changing display property to block with higher z-index.