1) Script Title: Image zoomer
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...uredzoomer.htm
3) Describe problem: I am trying to implement the image zoomer for a single image but having a problem with stacking. Whenever there is a video below the large zoom image, the image shows under the video and not on top of it.
i tried to apply the z-Index to the jQuery script but it doesn't work. Am I putting it in the wrong place ?
Code:<script type="text/javascript"> jQuery(document).ready(function($){ $('#image1').addimagezoom({ // single image zoom zoomrange: [4, 4], magnifiersize: [500,500], magnifierpos: 'left', cursorshade: true, largeimage: 'largeimage.jpg', zIndex: [999] }) }) </script>
Bookmarks