|
Shadowbox load on page load
Hello
I have followed the instructions and can't seem to get this working on ANY brower. I have checked through firebug to find any errors and there are none. If I tried to use a hyperlink to open the shadow box - doesn't work.
<link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css">
<script type="text/javascript" src="shadowbox/shadowbox.js"></script>
<script type="text/javascript">
window.onload = function() {
Shadowbox.init({
player: ['HTML']
});
Shadowbox.open({
content: 'images/Sympathy-card.jpg',
player: "html",
title: "Monsignor Raymond Hanna"
});
};
</script>
|