Hi
I'm facing the same issue, but with a link from a Flash slideshow.
The link in flash are set up with this code :
javascript:show('images/banners/slideshow/fullsize/24.jpg','');
as described in another thread.
I added this code in my HTML file :
<script type="text/javascript">
Shadowbox.init({
players: ['iframe', 'img']
});
</script>
<script type="text/javascript">
function show(url,label) {
Shadowbox.open(
{
title: label,
type: 'img',
content: url,
});
}</script>
Shadowbox is called porperly, as the grey overlay appears, but the box itslef is not displayed.
The following javascript error occurs :
S[p] is not a constructor
On click on other HTML links calling shadowbox, everything works fine.
when I try to add the "javascrit: ...." link in any HTML
tag, the result is the same as it's with the flash link, so I assume the problem comes from the JS and not from Flash.
Note that the error occurs even when I change the type attribute (html, iframe, ...) in the show function.
I'm working with the latest shadowbox version, downloaded a few hours ago.
Can anyone help me to solve this ? Thanks in advance !