I am using fancyBox plugin and integrated example7 multiple times on my page, works fine in firefox but in ie 6 when i click on any image other than first it goes to download that image rather than pop up.Please help very urgent.
My Code is
<script type="text/javascript">
$(document).ready(function()
{
$("a#example7").fancybox({ 'titlePosition' : 'inside' });
});
</script>
My HTML is
<a id="example7" href="./example/7_b.jpg" rel="Main Headline One" title="This is test.">
<img src="./example/7_s.jpg" />
</a>
You are adding Same ID to different elements and trying to use effect that is not available in Fancybox. Instead use class I have used in this fiddle
Hope it helps