Hi,
I've got the following test page that's not working.
Every time I load the page up I get into a loading loop, ie the page loads forever.
If I remove the code for jquery (script link and document.ready) the page works.
As you can see I've downloaded all the code from shadow into the folder /ressources/shadowbox/ (latest version as of today - 3.0b).
Any ideas ?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="/ressources/JQuery/jquery-1.3.2.min.js" type="text/javascript"></script>
<link href="/ressources/shadowbox/shadowbox.css" rel="stylesheet" type="text/css" />
<script src="/ressources/shadowbox/shadowbox.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
Shadowbox.init();
});
</script>
</head>
<body>
<div>
<a href="/documents/Page_14/Thumbs/Thumbnail1.jpg" rel="shadowbox" title="My Image">test</a>
</div>
</body>
</html>
Thanks
edit: added shadow version